@namch/agent-assistant 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.1] - 2026-03-12
9
+
10
+ ### Fixed
11
+ - **Agents tool**: Remove constant definition of `{TOOL}` in agent files. Use tool:all for dynamic resolution instead of hardcoding specific tools. This allows for proper placeholder replacement and multi-platform support.
12
+ - Updated all agent files in `agents/` to remove `{TOOL}` constant and use `tool:all` for platform resolution.
13
+
8
14
  ## [1.2.0] - 2026-03-09
9
15
 
10
16
  ### Added
package/README.md CHANGED
@@ -45,7 +45,7 @@ Transform one AI into a coordinated team of 21 specialist agents with structured
45
45
  ### Global Package (Recommended)
46
46
 
47
47
  ```bash
48
- npm install -g @namch/agent-assistant
48
+ npm install -g @namch/agent-assistant@latest
49
49
 
50
50
  # After installing globally, run:
51
51
 
@@ -2,7 +2,7 @@
2
2
  name: backend-engineer
3
3
  description: Principal Backend Architect — server-side logic, API design, scalable systems
4
4
  profile: "backend:execution"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [tester, database-architect, performance-engineer, devops-engineer, frontend-engineer, security-engineer]
7
7
  version: "1.0"
8
8
  category: execution
@@ -2,7 +2,7 @@
2
2
  name: brainstormer
3
3
  description: Principal Requirements Architect — requirements discovery, Socratic clarification, ideation
4
4
  profile: "planning:discovery"
5
- tools: [Read, Grep, Glob, Bash, semantic_search]
5
+ tools: all
6
6
  handoffs: [planner, researcher, tech-lead, designer]
7
7
  version: "1.0"
8
8
  category: research
@@ -2,7 +2,7 @@
2
2
  name: business-analyst
3
3
  description: Principal Business Analyst — requirements, stakeholder management, domain modeling
4
4
  profile: "planning:business"
5
- tools: [Read, Grep, Glob, Bash, Write, semantic_search]
5
+ tools: all
6
6
  handoffs: [brainstormer, planner, project-manager, tech-lead]
7
7
  version: "1.0"
8
8
  category: research
@@ -2,7 +2,7 @@
2
2
  name: database-architect
3
3
  description: Principal Database Architect — schema design, query optimization, data integrity
4
4
  profile: "data:execution"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [backend-engineer, security-engineer, performance-engineer, devops-engineer, tech-lead]
7
7
  version: "1.0"
8
8
  category: execution
@@ -2,7 +2,7 @@
2
2
  name: debugger
3
3
  description: Principal Debug Specialist — root cause analysis and systematic investigation
4
4
  profile: "quality:debugging"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [backend-engineer, frontend-engineer, tester, tech-lead, performance-engineer]
7
7
  version: "1.0"
8
8
  category: debugging
@@ -2,7 +2,7 @@
2
2
  name: designer
3
3
  description: Principal Design Architect — UI/UX design, design systems, user experience
4
4
  profile: "design:creative"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, generate_image, semantic_search]
5
+ tools: all
6
6
  handoffs: [frontend-engineer, mobile-engineer, researcher, tech-lead]
7
7
  version: "1.0"
8
8
  category: design
@@ -2,7 +2,7 @@
2
2
  name: devops-engineer
3
3
  description: Principal DevOps Architect — CI/CD, infrastructure as code, deployment automation
4
4
  profile: "devops:execution"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [backend-engineer, security-engineer, performance-engineer, database-architect, tech-lead]
7
7
  version: "1.0"
8
8
  category: execution
@@ -2,7 +2,7 @@
2
2
  name: docs-manager
3
3
  description: Principal Documentation Architect — technical writing, API docs, architecture docs
4
4
  profile: "research:documentation"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, semantic_search]
5
+ tools: all
6
6
  handoffs: [tech-lead, backend-engineer, frontend-engineer, designer]
7
7
  version: "1.0"
8
8
  category: support
@@ -2,7 +2,7 @@
2
2
  name: frontend-engineer
3
3
  description: Principal Frontend Architect — UI/UX excellence, web performance, accessibility
4
4
  profile: "frontend:execution"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search, generate_image]
5
+ tools: all
6
6
  handoffs: [tester, designer, performance-engineer, backend-engineer, security-engineer]
7
7
  version: "1.0"
8
8
  category: execution
@@ -2,7 +2,7 @@
2
2
  name: game-engineer
3
3
  description: Principal Game Architect — game development, Three.js, game engines
4
4
  profile: "gaming:execution"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [designer, frontend-engineer, performance-engineer, tech-lead]
7
7
  version: "1.0"
8
8
  category: execution
@@ -2,7 +2,7 @@
2
2
  name: mobile-engineer
3
3
  description: Principal Mobile Architect — iOS, Android, React Native, Flutter
4
4
  profile: "mobile:execution"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [designer, backend-engineer, tester, tech-lead]
7
7
  version: "1.0"
8
8
  category: execution
@@ -2,7 +2,7 @@
2
2
  name: performance-engineer
3
3
  description: Principal Performance Architect — profiling, optimization, load testing
4
4
  profile: "performance:validation"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [backend-engineer, frontend-engineer, database-architect, devops-engineer, tech-lead]
7
7
  version: "1.0"
8
8
  category: validation
package/agents/planner.md CHANGED
@@ -2,7 +2,7 @@
2
2
  name: planner
3
3
  description: Principal Technical Planner — implementation blueprints and task decomposition
4
4
  profile: "planning:analysis"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, Agent, semantic_search]
5
+ tools: all
6
6
  handoffs: [tech-lead, scouter, researcher, brainstormer, backend-engineer, frontend-engineer]
7
7
  version: "1.0"
8
8
  category: planning
@@ -2,7 +2,7 @@
2
2
  name: project-manager
3
3
  description: Principal Delivery Manager — project coordination, risk management, delivery
4
4
  profile: "management:orchestration"
5
- tools: [Read, Grep, Glob, Bash, Write, semantic_search]
5
+ tools: all
6
6
  handoffs: [tech-lead, planner, business-analyst, all-agents]
7
7
  version: "1.0"
8
8
  category: orchestration
@@ -2,7 +2,7 @@
2
2
  name: reporter
3
3
  description: Documentation & Reporting Specialist — transforms data into structured insights
4
4
  profile: "reporting:synthesis"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, Agent, semantic_search]
5
+ tools: all
6
6
  handoffs: [docs-manager, planner, tech-lead, project-manager]
7
7
  version: "1.0"
8
8
  category: documentation
@@ -2,7 +2,7 @@
2
2
  name: researcher
3
3
  description: Principal Research Analyst — technical research, documentation discovery, best practices
4
4
  profile: "research:analysis"
5
- tools: [Read, Grep, Glob, Bash, WebSearch, WebFetch, fetch_webpage, semantic_search]
5
+ tools: all
6
6
  handoffs: [planner, tech-lead, brainstormer, backend-engineer, frontend-engineer]
7
7
  version: "1.0"
8
8
  category: research
@@ -2,7 +2,7 @@
2
2
  name: reviewer
3
3
  description: Principal Code Reviewer — quality assurance and plan compliance verification
4
4
  profile: "quality:review"
5
- tools: [Read, Grep, Glob, Bash, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [tech-lead, backend-engineer, frontend-engineer, security-engineer, tester]
7
7
  version: "1.0"
8
8
  category: validation
package/agents/scouter.md CHANGED
@@ -2,7 +2,7 @@
2
2
  name: scouter
3
3
  description: Principal Codebase Analyst — code exploration and pattern discovery
4
4
  profile: "research:exploration"
5
- tools: [Read, Grep, Glob, Bash, Agent, list_code_usages, semantic_search, file_search]
5
+ tools: all
6
6
  handoffs: [planner, tech-lead, researcher, backend-engineer, frontend-engineer]
7
7
  version: "1.0"
8
8
  category: research
@@ -2,7 +2,7 @@
2
2
  name: security-engineer
3
3
  description: Principal Security Architect — threat modeling, secure coding, vulnerability assessment
4
4
  profile: "security:validation"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [backend-engineer, devops-engineer, database-architect, tester, tech-lead]
7
7
  version: "1.0"
8
8
  category: validation
@@ -2,7 +2,7 @@
2
2
  name: tech-lead
3
3
  description: Technical Lead — orchestrates implementation, routes to specialists, ensures quality
4
4
  profile: "architecture:orchestration"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, Agent, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [backend-engineer, frontend-engineer, database-architect, security-engineer, devops-engineer, tester, reviewer]
7
7
  version: "1.0"
8
8
  category: execution
package/agents/tester.md CHANGED
@@ -2,7 +2,7 @@
2
2
  name: tester
3
3
  description: Principal QA Architect — test strategy, automation, quality assurance
4
4
  profile: "quality:validation"
5
- tools: [Read, Grep, Glob, Bash, Write, Edit, list_code_usages, semantic_search]
5
+ tools: all
6
6
  handoffs: [backend-engineer, frontend-engineer, reviewer, debugger, security-engineer, tech-lead]
7
7
  version: "1.0"
8
8
  category: validation
@@ -3,31 +3,6 @@ name: Agent Assistant
3
3
  description: Central Orchestration Brain for Multi-Agent System. Delegates through Commands → Agents → Skills.
4
4
  argument-hint: Type command + task, e.g. /cook implement login
5
5
  tools: all
6
- handoffs:
7
- - label: "🚀 Cook"
8
- agent: "Agent Assistant"
9
- prompt: "/cook:hard "
10
- - label: "📋 Plan"
11
- agent: "Agent Assistant"
12
- prompt: "/plan:fast "
13
- - label: "🛠 Fix"
14
- agent: "Agent Assistant"
15
- prompt: "/fix:hard "
16
- - label: "🐛 Debug"
17
- agent: "Agent Assistant"
18
- prompt: "/debug "
19
- - label: "🧪 Test"
20
- agent: "Agent Assistant"
21
- prompt: "/test "
22
- - label: "📝 Code"
23
- agent: "Agent Assistant"
24
- prompt: "/code "
25
- - label: "📚 Docs"
26
- agent: "Agent Assistant"
27
- prompt: "/docs:core "
28
- - label: "🎨 Design"
29
- agent: "Agent Assistant"
30
- prompt: "/design "
31
6
  ---
32
7
 
33
8
  # ⚡ AGENT ASSISTANT — ORCHESTRATOR PROTOCOL
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@namch/agent-assistant",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Multi-agent orchestration framework for AI coding assistants (Cursor, Copilot, Antigravity, Claude Code, Codex) with Hybrid Skill Orchestration Layer (HSOL).",
5
5
  "main": "cli/install.js",
6
6
  "bin": {