New:Socket for Asana Is Now Available.Learn more
Get Started

agent-arche

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agent-arche

Multi-platform AI agent orchestration for GitHub Copilot, Claude Code, and Codex

Source
npmnpm
Version
1.3.4
Version published
Weekly downloads
33
-28.26%
Maintainers
2
Weekly downloads
 
Created
Source

agent-arche

Multi-platform AI agent orchestration for GitHub Copilot, Claude Code, and Codex. It installs specialist agents, shared skills, memory templates, hooks, and project instructions.

Install

npx agent-arche install

Run it from your project root. The installer asks for:

  • Scope: Full orchestration, Small orchestration, or Skills only
  • Platform: GitHub Copilot, Claude Code, or Codex
  • Copilot plan, only when installing Copilot agents
ScopeInstalls
Full orchestrationFull specialist roster, hooks, instructions/rules, prompts/commands, skills, memory, and platform root files
Small orchestrationLean 3-agent setup: Orchestrator, Coder, Docs-updater, plus hooks, instructions/rules, skills, memory, and root files
Skills onlyShared skills/ folder only
PlatformDestination
GitHub Copilot.github/
Claude Code.claude/ plus root CLAUDE.md
Codex.codex/, .agents/skills/, plus root AGENTS.md

After installing Full or Small orchestration, run the project startup flow once:

PlatformPrompt
GitHub Copilot@Orchestrator use the project-startup skill on this project
Claude CodeUse the orchestrator agent to run the project-startup skill on this project
CodexUse the orchestrator agent to run the project-startup skill on this project

Update later with:

npx agent-arche update

Orchestration

Full orchestration uses specialist agents. Small orchestration keeps the same skills and memory model but routes most work through Coder and Docs-updater.

AgentFull orchestration purposeSmall orchestration
OrchestratorClassifies work, confirms the agent pipeline, delegates, and never edits files directlySame coordinator, lower-token routing
PlannerResearches the repo and creates implementation plansFolded into Coder or Orchestrator
ResearcherInvestigates prior art, docs, issues, CVEs, and unknown librariesFolded into Coder
CoderImplements code and unit testsMain executor
DesignerHandles UI/UX implementation and visual directionFolded into Coder with design
Code-reviewerReviews code quality, conventions, TypeScript, and maintainabilityFolded into Coder or direct skill use
Security-auditorReviews auth, routes, secrets, injection, SSRF, file I/O, and OWASP risksFolded into Coder or direct skill use
UX-reviewerReviews accessibility, usability, interaction, and visual qualityFolded into Coder with design
TesterWrites and runs Playwright flowsFolded into Coder
Docs-updaterUpdates memory, docs, changelogs, commit text, and PR textSame docs and memory owner

Common full pipelines:

WorkPipeline
New featurePlanner -> Researcher -> Coder + Designer -> Code-reviewer + Security-auditor + UX-reviewer -> Tester -> Docs-updater
Bug fixPlanner -> Coder -> Code-reviewer -> Tester -> Docs-updater
UI changeDesigner -> Code-reviewer + UX-reviewer -> Docs-updater
Architecture reviewPlanner with improve-codebase-architecture -> Docs-updater

Skill Routing

The public skill surface is the set of top-level folders under skills/ that contain SKILL.md. Design subflows live inside skills/design/, and caveman compression lives inside skills/caveman/.

Work typeFull ownerSmall ownerSkills
Bootstrap and memoryOrchestrator, PlannerOrchestratorproject-startup, caveman
Product planningPlannerOrchestrator or Coderproduct-brainstorming, create-prd, create-epics-and-stories
Planning pressure testsPlanner, CoderOrchestrator or Codergrill-me, grill-with-docs, triage
Implementation and debuggingCoder, TesterCoderdiagnose, tdd, prototype, handoff
Architecture and reviewPlanner, Code-reviewerCoderimprove-codebase-architecture, review
Code standardsCoder, Code-reviewerCodercoding-standards, karpathy-guidelines, api-design, postgres-patterns, seo
UI/UXDesigner, UX-reviewerCoderdesign
Git and PRsCoder, Code-reviewer, Docs-updaterCoder or Docs-updatergit

Recommended order for product work: project-startup once, product-brainstorming, create-prd, then create-epics-and-stories.

Skills

SkillPurposeExample request
api-designShapes REST APIs, validation, pagination, error envelopes, status codes, URL design, and API security checks."Design the endpoint shape and error responses for this checkout API."
cavemanCompressed communication mode and context-file compression workflow via steps/compress.md."Use compressed mode" or "compress AGENTS.md with caveman."
coding-standardsGeneral code quality rules for TypeScript, naming, file organization, imports, errors, and forbidden patterns."Review this module against our coding standards."
create-epics-and-storiesTurns a PRD into low-dependency epics, stories, acceptance criteria, and build slices."Break this PRD into epics and stories for the dev team."
create-prdCreates a PRD through a guided workflow and reusable template."Create the PRD for this product idea."
designConsolidated UI/UX skill for product-fit direction, implementation, redesign, animation, GSAP, styles, audits, critique, optimization, Stitch, and full-output flows."Build a polished settings page and audit the checkout flow."
diagnoseDebug loop for reproduce, isolate, hypothesize, instrument, fix, and regression-test work."Diagnose this flaky login test with evidence."
gitBranch naming, commit conventions, PR standards, and PR body guidance."Create the branch name, commits, and PR body for this change."
grill-mePressure-tests a greenfield idea before code or docs exist."Interrogate this idea before I start building."
grill-with-docsPressure-tests plans against existing code and docs, then records decisions as context or ADRs."Stress-test this plan against the current architecture docs."
handoffProduces compact continuation context for another agent, person, or session."Create a handoff for the next agent."
improve-codebase-architectureFinds shallow modules and architecture friction, then proposes deeper module boundaries and reports."Find shallow modules in this subsystem and propose refactors."
karpathy-guidelinesCoding-agent behavior guardrails: keep changes surgical, avoid overengineering, expose assumptions, and verify results."Keep this refactor surgical and call out assumptions before editing."
postgres-patternsPostgreSQL schema, query, migration, indexing, RLS, pooling, and review patterns."Review this migration for indexes, RLS, and query performance."
product-brainstormingStructured product ideation using guided creative techniques and output organization."Help me brainstorm the first version of this product."
project-startupFirst-run setup that bootstraps memory and configures docs/agents/ issue tracker, labels, and domain-doc conventions."Run the project startup flow for this repo."
prototypeBuilds disposable logic or UI experiments to answer a product or technical question quickly."Prototype this workflow before we commit to the architecture."
reviewReviews a branch, PR, or diff against standards, specs, risks, and missing tests."Review this PR using the engineering review skill."
seoSEO execution plan for technical foundation, metadata, structured data, Core Web Vitals, linking, and monitoring."Prepare this marketing page for search and sharing."
tddGuides red-green-refactor work with support for deep modules, interfaces, mocks, and refactoring candidates."Implement this parser with TDD."
triageMoves issues through canonical states and can produce ready-for-agent briefs."Move issue 42 to ready-for-agent with an agent brief."

Runtime Pieces

PieceWhat it does
Hookssession-start.cjs injects startup context, pre-tool-safety.cjs blocks destructive commands, and changelog-reminder.cjs reminds agents about docs/changelog drift.
Instructions/rulesCopilot uses native instruction files. Claude and Codex install equivalent rule/instruction files for TypeScript, Svelte, tests, and API routes.
MemoryFull and Small orchestration install a project memory folder. Use project-startup once to seed memory and engineering skill context. Skills-only installs do not include memory.
Prompts/commandsCopilot prompts and Claude commands include code-review, write-tests, debug, create-issue, pr-description, and security-review. Codex uses agents by name instead.
Codex MCPCodex MCP servers and runtime behavior are configured in .codex/config.toml, with disabled examples for Context7, Playwright, GitHub, and OpenAI docs.

Manual Setup

The CLI is preferred. For manual installs:

PlatformCopy
Copilotcopilot/ to .github/, skills/ to .github/skills/, memory/ to .github/memory/
Claude Codeclaude/ to .claude/, skills/ to .claude/skills/, memory/ to .claude/memory/, claude/CLAUDE.md to root CLAUDE.md
Codexcodex/ contents to .codex/, skills/ to .agents/skills/, memory/ to .codex/memory/, codex/AGENTS.md to root AGENTS.md

For PR and issue workflows, copy templates/ into .github/ and update the comments inside.

Notes

  • Copilot installs adjust agent models by subscription: Student replaces Claude models with Copilot GPT, Pro replaces Opus-only agents with Sonnet, and Pro+ keeps the configured roster.
  • Verify published package integrity with npm view agent-arche dist.integrity and compare it to agent-arche.json in the installed platform folder.

Credits

Built on top of excellent open-source work:

RepoWhat we took from it
cyxzdev/UncodixfyDesign and UI skill inspiration
pbakaus/impeccableFoundation for the ui-audit, ui-optimize, critique, animate steps inside the design skill
Leonxlnx/taste-skillgsap, redesign, soft, minimalist, brutalist, stitch, output, and other quality-focused steps inside the design skill
anthropics/claude-code frontend-designFrontend design skill patterns
mattpocock/skillsgrill-me, grill-with-docs, tdd, improve-codebase-architecture, diagnose, handoff, prototype, review, triage, and setup-matt-pocock-skills that is used inside the project startup skills
JuliusBrussee/cavemancaveman, and caveman-compress communication skills
BMadbmad-brainstorming, bmad-create-prd, and bmad-create-epics-and-stories skills
Akindu23/my-agent-skillskarapathy-guidelines, postgres-patterns skills

Keywords

github-copilot

FAQs

Package last updated on 29 May 2026

Related posts