Skip to content

houke/nexus

v1.1.0MIT

Multi-agent orchestration system with specialized AI personas, workflow prompts, and skills for VS Code Copilot and GitHub Copilot CLI

Nexus

Multi-agent orchestration plugin for GitHub Copilot. Conforms to the Agent Plugins 1.0 open standard.

Nexus provides a team of specialized AI personas that collaborate to plan, build, and review software through a consistent workflow system.

Installation

VS Code Agent Plugins

  1. Open this URL in your browser: vscode://chat-plugin/add-marketplace?ref=houke/nexus
  2. In VS Code, open Extensions (Cmd/Ctrl+Shift+X)
  3. Search for @agentPlugins houke and install Nexus
  4. Open Copilot Chat and choose the Nexus agent

Copilot CLI

copilot plugin marketplace add houke/nexus
copilot plugin install nexus@houke-nexus
copilot plugin list

What You Get

Agents

AgentDescription
nexusOrchestrator: triages requests and delegates to specialized agents via runSubagent.
architectSystem architecture, schemas, local-first and infra design.
software-developerProduction implementation, TDD, debugging.
tech-leadCode quality, architecture integrity, refactoring.
qa-engineerTesting strategy, edge cases, accessibility checks.
security-agentOWASP security review, dependency and threat checks.
product-managerUser stories, acceptance criteria, prioritization.
business-analystRequirements, process mapping, cross-platform documentation ownership.
ux-designerUser flows, IA, interaction design.
visual-designerUI polish, visual hierarchy, motion and layout refinement.
devopsCI/CD, release automation, operational hardening.
gamerGamification loops, progression, retention mechanics.
seo-specialistTechnical SEO, structured data, search optimization.

Skills

SkillDescription
accessibility-auditWCAG 2.2 accessibility auditing.
frontend-ui-polishVisual polish, animation, design token usage.
gamification-patternsXP, achievements, streak and reward systems.
google-official-seo-guideOfficial Google SEO guidance.
implementation-patternsTDD and production implementation conventions.
local-first-patternsOffline-first storage and sync patterns.
nexus-workflowsPlanning, execution, review, sync, summary, hotfix, init orchestration.
requirements-engineeringUser stories, acceptance criteria, PRD structure.
security-auditOWASP security audit checklists and patterns.
seo-aeo-best-practicesSEO + AEO implementation guidance.
test-generationVitest, RTL, Playwright test generation.
user-flow-designJourney mapping and interaction workflows.
verify-codeCode quality and type safety validation.
webgpu-threejs-tslWebGPU + Three.js TSL guidance.

MCP Servers

ServerDescription
filesystemFilesystem operations via MCP.
playwrightBrowser automation for E2E and UI validation.
sequential-thinkingStructured multi-step reasoning support.

Workflows

Nexus ships with workflow prompts in plugins/nexus/skills/nexus-workflows/workflows/.

WorkflowSlash CommandPurpose
plan.md/nexus-workflows planMulti-agent planning session with requirements and architecture alignment.
execution.md/nexus-workflows executeCoordinate implementation from an approved plan.
review.md/nexus-workflows reviewMulti-agent review and fix pass with documented findings.
hotfix.md/nexus-workflows hotfixFast path for small, well-understood bug fixes.
sync.md/nexus-workflows syncReconcile documentation with actual repository changes.
summary.md/nexus-workflows summarySnapshot of progress and gaps.
init.md/nexus-workflows initScaffold .nexus/, feature index, memory files, and required baseline docs.

Orchestration Rules

  • Nexus defaults to delegation for substantive work.
  • Direct Q&A is allowed for lightweight explanation or clarification.
  • If workflow keywords are detected, workflow routing takes priority over Q&A mode.
  • If a workflow expects output files, those files must be persisted before user satisfaction prompts.

Output Structure

Nexus organizes work under .nexus/ using feature folders:

.nexus/
  toc.md
  features/
    <feature-slug>/
      plan.md
      execution.md
      review.md
      summary.md
      notes/
    _hotfixes/
  memory/
  tmp/

Repository Structure

nexus/
  .github/
    plugin/
      marketplace.json       # Copilot marketplace catalog
  plugins/
    nexus/
      plugin.json            # Agent Plugins 1.0 manifest
      mcp.json               # Portable MCP server definitions
      skills/                # Auto-discovered skills
      com.github.copilot/
        agents/              # Copilot-specific agents

License

MIT