{"id":51029186,"url":"https://github.com/another-guy/arc","last_synced_at":"2026-06-21T22:30:48.687Z","repository":{"id":359947510,"uuid":"1248059707","full_name":"another-guy/arc","owner":"another-guy","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-24T09:23:03.000Z","size":31,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-24T10:09:05.078Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/another-guy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-24T06:10:34.000Z","updated_at":"2026-05-24T09:23:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/another-guy/arc","commit_stats":null,"previous_names":["another-guy/arc"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/another-guy/arc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/another-guy%2Farc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/another-guy%2Farc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/another-guy%2Farc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/another-guy%2Farc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/another-guy","download_url":"https://codeload.github.com/another-guy/arc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/another-guy%2Farc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34628453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-21T02:00:05.568Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-21T22:30:46.372Z","updated_at":"2026-06-21T22:30:48.682Z","avatar_url":"https://github.com/another-guy.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# ARC — AI-Powered Workspace Bootstrap for Engineers\n\nArc is a [Claude Code](https://claude.ai/code) plugin that turns a blank directory into a fully-scaffolded engineering workspace in minutes.\n\nIt clones your repositories, builds a knowledge base from your docs, wikis, and codebase, and maintains that context as your understanding of the system grows.\n\nNo globally installed tools assumed beyond Claude Code itself.\n\n---\n\n## Installation\n\nArc is published to the Claude Code community marketplace.\n\n**Step 1 — Add the community marketplace** (skip if already added):\n\n```\n/plugin marketplace add anthropics/claude-plugins-community\n```\n\n**Step 2 — Install arc** inside the workspace directory where you want it available:\n\n```\n/plugin install arc\n```\n\nThis installs arc's skills as `/arc:*` commands in the current workspace. The plugin files live in `.claude/commands/arc/` and travel with the workspace (commit or share that directory to distribute arc to teammates).\n\n\u003e **Prefer to install directly from source?**\n\u003e ```\n\u003e /plugin install https://github.com/another-guy/arc\n\u003e ```\n\n**Alternatively, instead of installing from the marketplace, clone the repository** and load the plugin from your local directory:\n\n```sh\ngit clone https://github.com/another-guy/arc.git\n\nclaude --plugin-dir ./arc\n\n# In Claude Code, load the plugin:\n/reload-plugins\n```\n\nThis way is useful for local plugin development or installation without commitment.\n\n---\n\n## Updating\n\nTo pull the latest version of arc into your workspace:\n\n```\n/plugin update arc\n```\n\n---\n\n## Workflow\n\nRun these skills in order the first time you set up a workspace at a new company.\n\n### Step 1 — Scaffold the workspace\n\n```\n/arc:scaffold\n```\n\nCreates the directory structure, stub files, and configuration files arc needs. Safe to re-run — skips files that already exist.\n\n### Step 2 — Add your repositories\n\nEdit `repo-list.json` to list the repositories you want in the workspace:\n\n```json\n{\n  \"repos\": [\n    { \"name\": \"auth-service\", \"product\": \"platform\", \"url\": \"https://github.com/org/auth-service.git\" },\n    { \"name\": \"web-app\",      \"product\": \"frontend\",  \"url\": \"https://github.com/org/web-app.git\" }\n  ]\n}\n```\n\n### Step 3 — Configure data sources\n\n```\n/arc:configure\n```\n\nInteractively sets up your documentation source (Confluence, Notion, etc.), ticket tracker (Jira, Linear, etc.), and code hosting (GitHub, GitLab, etc.). Offers MCP integration where available; falls back to CLI + access token for everything else.\n\n### Step 4 — Clone your repositories\n\n```\n/arc:workspace-sync\n```\n\nClones all repos from `repo-list.json` that aren't already present. Pulls existing repos if clean; skips any with uncommitted changes.\n\n### Step 5 — Build the knowledge base\n\n```\n/arc:kb-generate\n```\n\nAnalyzes your repos, reads your docs and wikis, and writes a structured knowledge base into `knowledge/`. Identifies platform/core repos and asks which ones to document in depth. Designed to be run in phases — safe to resume after `/compact`.\n\n### Step 6 — Deep-document platform repos\n\nFor each platform repo selected in the previous step:\n\n```\n/arc:kb-repo repos/\u003cproduct\u003e/\u003cname\u003e\n```\n\nGenerates a detailed knowledge article for a single repo. Run `/compact` before each invocation to give it a clean context window.\n\n---\n\n## Maintainers\n\nTo cut a release, follow the checklist in `RELEASE.md`.\n\n---\n\n## Getting help\n\nFor a description of every skill — what it does, what it creates, and what it requires — read `SKILLS.md` in this repository:\n\n```\n@SKILLS.md\n```\n\nEach skill is also self-guiding: when invoked, it explains what it is doing and prompts you when a decision is needed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanother-guy%2Farc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanother-guy%2Farc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanother-guy%2Farc/lists"}