You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@namch/agent-assistant

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@namch/agent-assistant

Multi-agent orchestration framework for AI coding assistants (Cursor, Copilot, Antigravity, Claude Code, Codex) with Hybrid Skill Orchestration Layer (HSOL).

latest
npmnpm
Version
1.2.2
Version published
Maintainers
1
Created
Source
Agent Assistant Logo

Agent Assistant

Multi-agent orchestration for AI coding assistants

Transform one AI into a coordinated team of 21 specialist agents with structured workflows and 310+ domain skills.

npm (scoped) License: MIT Node.js 18+ PRs Welcome

Why Agent Assistant?

🎯 FeatureWhat It Does
One-Time Setup, Forever UseConfigure once at global level (~/.cursor/, ~/.claude/, etc.) and it auto-applies to ALL your projects. No more repetitive config for every new repo.
Sub-Agent OrchestrationWhen supported (Claude Code, Cursor Max mode), the main agent spawns specialized sub-agents to handle tasks in parallel — backend, frontend, testing, security all working simultaneously.
Multi-Platform SupportWorks seamlessly across Cursor, GitHub Copilot, Claude Code, Codex, and Antigravity/Gemini. Same workflows, any tool.
Matrix Skill Discovery (HSOL)Injects the right skills by profile and request; optional dynamic discovery (find-skills) for hard/focus when matrix fitness < 0.8. 310+ matrix skills, zero manual config.

The Goal

Code less, deliver more. Reduce token costs by 85%, cut bugs by 70%, and stop wasting time on repetitive tasks.

Quick Results

MetricImprovement
⏰ Time-to-Production70% faster
🐛 Bug Rate70% reduction
💰 Token Cost85% savings

Installation

npm install -g @namch/agent-assistant@latest

# After installing globally, run:

agent-assistant install cursor # Setup for Cursor
agent-assistant install claude # Setup for Claude Code
agent-assistant install copilot # Setup for GitHub Copilot
agent-assistant install antigravity # Setup for Antigravity/Gemini
agent-assistant install codex # Setup for Codex
agent-assistant install --all # Setup for ALL tools

From Source

# Clone
git clone https://github.com/hainamchung/agent-assistant.git
cd agent-assistant

# Install for your tool(s)
node cli/install.js install cursor      # Cursor
node cli/install.js install claude      # Claude Code
node cli/install.js install copilot     # GitHub Copilot
node cli/install.js install antigravity # Antigravity/Gemini
node cli/install.js install codex       # Codex
node cli/install.js install --all       # All tools

That's it. The framework installs globally and works across all your projects.

Uninstall

Remove configurations

agent-assistant uninstall cursor      # Remove from Cursor
agent-assistant uninstall claude      # Remove from Claude Code
agent-assistant uninstall copilot     # Remove from GitHub Copilot
agent-assistant uninstall antigravity # Remove from Antigravity/Gemini
agent-assistant uninstall codex       # Remove from Codex
agent-assistant uninstall --all       # Remove from ALL tools

Remove global package

npm uninstall -g @namch/agent-assistant

From Source

cd agent-assistant
node cli/install.js uninstall cursor      # Remove from Cursor
node cli/install.js uninstall claude      # Remove from Claude Code
node cli/install.js uninstall copilot     # Remove from GitHub Copilot
node cli/install.js uninstall antigravity # Remove from Antigravity/Gemini
node cli/install.js uninstall codex       # Remove from Codex
node cli/install.js uninstall --all   # Remove from all tools
# Then remove the directory
cd ..
rm -rf agent-assistant

Quick Start

/docs:core       # Technical docs for AI context
/docs:business   # Business requirements

Creates ./documents/ files that agents reference. Without docs, agents work generically. With docs, they follow YOUR patterns.

2. Start Building

/cook:fast "add dark mode toggle"           # Simple feature
/cook:hard "implement OAuth 2.0"            # Complex feature with all quality gates
/fix "payment fails on Safari"              # Bug fix
/plan "build notification system"           # Implementation plan
/test:hard "user registration flow"         # Generate tests
/review "audit auth module"                 # Code review
/report "status report for sprint"          # Reporting (create/update reports)

Variants

VariantUse ForAgents
:fastSimple tasks2-3 agents
:hardComplex features5-8 agents + quality gates
:focusClean execution(cook, code, fix, debug, design, plan, test, report)
:teamTeam workflowsAll agents, structured phases

Commands Reference

CategoryCommands
Build/cook, /code, /fix
Quality/test, /review, /debug
Plan/plan, /brainstorm, /design
Docs/docs:core, /docs:business, /docs:audit
Report/report:fast, /report:hard, /report:focus
Deploy/deploy:check, /deploy:preview, /deploy:production

21 Specialist Agents

DomainAgents
Implementationbackend-engineer, frontend-engineer, mobile-engineer, game-engineer
Architecturetech-lead, database-architect
Qualitytester, reviewer, debugger, security-engineer
Planningplanner, brainstormer, business-analyst
Supportdesigner, devops-engineer, docs-manager, performance-engineer, researcher, scouter, project-manager, reporter

Matrix Skill Discovery

Agents don't have hardcoded skills. They declare a profile, and the Matrix automatically injects relevant skills:

# Agent declares:
profile: "backend:execution"

# Matrix resolves → 20+ backend skills injected automatically

310+ skills across 19 domains. Add a new skill once, all relevant agents get it instantly.

Project Structure

agent-assistant/
├── agents/          # 21 specialist agents
├── commands/        # 50+ workflow commands (routers + variants: fast, hard, focus)
├── rules/           # 8 orchestration rules
├── matrix-skills/   # 19 domain skill registries
├── skills/          # 310+ domain skills
└── cli/             # Installer

Supported Tools

ToolStatusInstall Path
Cursor✅ Full~/.cursor/
Claude Code✅ Full~/.claude/
GitHub Copilot✅ Full~/.copilot/
Antigravity✅ Full~/.gemini/
Codex✅ Full~/.codex/

Contributing

  • Fork → Branch → Commit (feat:, fix:, docs:) → PR
  • Areas: Agents, Commands, Skills, Matrix, Docs, Bug fixes

Support

If this helps you ship faster, consider buying me a coffee!

Buy Me A Coffee
Buy Me A Coffee QR Code
QR Code

License

MIT — NamCHIssues

Agent AssistantCode less. Deliver more.

Keywords

agentic-coding

FAQs

Package last updated on 12 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts