@techwavedev/agi-agent-kit 1.2.6 → 1.2.8

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,57 @@ 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.8] - 2026-02-14
9
+
10
+ ### Added
11
+
12
+ - **Superpowers Adaptation**: Adapted best patterns from [obra/superpowers](https://github.com/obra/superpowers) into the agi framework, extending it with structured execution, TDD enforcement, and verification gates while preserving all existing multi-platform, memory, and agent capabilities.
13
+
14
+ **New Skills:**
15
+ - **`executing-plans`**: Structured plan execution with two modes — Batch (3 tasks + human checkpoint) or Subagent-Driven (fresh agent per task + two-stage review: spec compliance then code quality). Platform-adaptive across Claude Code, Gemini, Kiro, and Opencode.
16
+ - **`test-driven-development`**: Iron-law TDD enforcement with RED-GREEN-REFACTOR cycle, rationalization prevention table, and verification checklist. "No production code without a failing test first."
17
+ - **`verification-before-completion`**: Universal evidence gate — no completion claims without fresh verification output. Integrates with agi audit scripts (`checklist.py`, `security_scan.py`, `lint_runner.py`, etc.).
18
+
19
+ ### Changed
20
+
21
+ - **`systematic-debugging`**: Replaced lightweight 110-line version with comprehensive 4-phase methodology (Root Cause Investigation → Pattern Analysis → Hypothesis Testing → Implementation). Includes iron law, multi-component evidence gathering, rationalization table, and real-world impact stats (95% vs 40% first-time fix rate).
22
+ - **`plan-writing`**: Added TDD step structure template (write test → verify fail → implement → verify pass → commit), bite-sized task granularity (2-5 min per step), and execution handoff to `executing-plans` skill.
23
+ - **`brainstorming`**: Added HARD-GATE (no code before design approval), propose 2-3 approaches step, and design document saving with handoff to `plan-writing`.
24
+ - **`orchestrator`** agent: Added two-stage review protocol (spec compliance then code quality), execution mode selection (batch vs subagent), verification gate, and referenced skills table.
25
+ - **`parallel-agents`**: Added focused agent prompt structure template, explicit "when NOT to use" heuristic, and review-and-integrate protocol with `verification-before-completion` gate.
26
+ - **`debugger`** agent: Added enhanced skills integration table referencing `systematic-debugging`, `test-driven-development`, and `verification-before-completion`.
27
+ - **`SKILLS_CATALOG.md`**: Regenerated with 45 template skills (3 new: `executing-plans`, `test-driven-development`, `verification-before-completion`).
28
+
29
+ ### Why This Is More Complete Than Superpowers
30
+
31
+ > All superpowers patterns were adopted. The agi framework extends them with capabilities superpowers does not have.
32
+
33
+ | Capability | obra/superpowers | agi Framework |
34
+ | ----------------------------- | :-----------------: | :---------------------------------------------: |
35
+ | TDD Enforcement | ✅ | ✅ (adapted) |
36
+ | Plan Execution with Review | ✅ | ✅ (adapted + platform-adaptive) |
37
+ | Systematic Debugging | ✅ | ✅ (adapted + `debugger` agent integration) |
38
+ | Verification Gates | ✅ | ✅ (adapted + agi script integration) |
39
+ | Two-Stage Code Review | ✅ | ✅ (adapted into orchestrator) |
40
+ | Git Worktrees | ✅ | ➖ (standard branches used) |
41
+ | Multi-Platform Orchestration | ❌ Claude Code only | ✅ 4 platforms (Claude, Gemini, Kiro, Opencode) |
42
+ | Semantic Memory (Qdrant) | ❌ | ✅ 90-100% token savings |
43
+ | 19 Specialist Agents | ❌ | ✅ Domain-specific boundaries |
44
+ | Agent Boundary Enforcement | ❌ | ✅ File-type ownership protocol |
45
+ | Dynamic Question Generation | ❌ | ✅ Trade-off tables, priorities |
46
+ | 12 Audit/Verification Scripts | ❌ | ✅ Security, lint, UX, SEO, Lighthouse |
47
+ | Memory-First Protocol | ❌ | ✅ Auto cache-hit before work |
48
+ | Skill Creator + Catalog | ❌ | ✅ 45+ composable skills |
49
+ | Platform Setup Wizard | ❌ | ✅ One-shot auto-configuration |
50
+
51
+ ## [1.2.7] - 2026-02-11
52
+
53
+ ### Security & Maintenance
54
+
55
+ - **Repository Sanitization**: Removed all internal development configurations (`.agent`, `.claude`, `.gemini`) and private skills from the public repository.
56
+ - **Workflow Hardening**: Enforced fork-and-PR workflow in `CONTRIBUTING.md`.
57
+ - **Community Standards**: Added issue templates and PR templates.
58
+
8
59
  ## [1.2.6] - 2026-02-10
9
60
 
10
61
  ### Added
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  `@techwavedev/agi-agent-kit` is a modular, deterministic framework designed to bridge the gap between LLM reasoning and reliable production execution. It scaffolds a "3-Layer Architecture" (Intent → Orchestration → Execution) that forces agents to use tested scripts rather than hallucinating code.
9
9
 
10
- **v1.2.6** — Now with platform-adaptive orchestration and integrated semantic memory across Claude Code, Kiro IDE, Gemini, and Opencode.
10
+ **v1.2.8** — Now with structured plan execution, TDD enforcement, verification gates (adapted from [obra/superpowers](https://github.com/obra/superpowers)), plus platform-adaptive orchestration and semantic memory across Claude Code, Kiro IDE, Gemini, and Opencode.
11
11
 
12
12
  ---
13
13
 
@@ -48,16 +48,40 @@ This checks Qdrant, Ollama, embedding models, and collections — auto-fixing an
48
48
  | Feature | Description |
49
49
  | ----------------------------- | --------------------------------------------------------------------------- |
50
50
  | **Deterministic Execution** | Separates business logic (Python scripts) from AI reasoning (Directives) |
51
- | **Modular Skill System** | 56 plug-and-play skills that can be added or removed instantly |
51
+ | **Modular Skill System** | 45+ plug-and-play skills that can be added or removed instantly |
52
+ | **Structured Plan Execution** | Batch or subagent-driven execution with two-stage review (spec + quality) |
53
+ | **TDD Enforcement** | Iron-law RED-GREEN-REFACTOR cycle — no production code without failing test |
54
+ | **Verification Gates** | Evidence before claims — no completion without fresh verification output |
52
55
  | **Platform-Adaptive** | Auto-detects and optimizes for Claude Code, Kiro IDE, Gemini, and Opencode |
53
56
  | **Multi-Agent Orchestration** | Agent Teams, subagents, Powers, or sequential personas — adapts to platform |
54
57
  | **Semantic Memory** | Built-in Qdrant-powered memory with 95% token savings via caching |
55
- | **Deep RAG (NotebookLM)** | Opt-in autonomous research via Google NotebookLM + Gemini, fully MCP-driven |
56
58
  | **Self-Healing Workflows** | Agents read error logs, patch scripts, and update directives automatically |
57
59
  | **One-Shot Setup** | Platform detection + project stack scan + auto-configuration in one command |
58
60
 
59
61
  ---
60
62
 
63
+ ## 🆚 How This Compares to Superpowers
64
+
65
+ The agi framework adopts all best patterns from [obra/superpowers](https://github.com/obra/superpowers) and extends them with capabilities superpowers does not have:
66
+
67
+ | Capability | obra/superpowers | agi Framework |
68
+ | ---------------------------- | :--------------: | :----------------------------: |
69
+ | TDD Enforcement | ✅ | ✅ Adapted |
70
+ | Plan Execution + Review | ✅ | ✅ Adapted + platform-adaptive |
71
+ | Systematic Debugging | ✅ | ✅ Adapted + `debugger` agent |
72
+ | Verification Gates | ✅ | ✅ Adapted + 12 audit scripts |
73
+ | Two-Stage Code Review | ✅ | ✅ Adapted into orchestrator |
74
+ | Multi-Platform Orchestration | ❌ Claude only | ✅ 4 platforms |
75
+ | Semantic Memory (Qdrant) | ❌ | ✅ 90-100% token savings |
76
+ | 19 Specialist Agents | ❌ | ✅ Domain boundaries |
77
+ | Agent Boundary Enforcement | ❌ | ✅ File-type ownership |
78
+ | Dynamic Question Generation | ❌ | ✅ Trade-offs + priorities |
79
+ | Memory-First Protocol | ❌ | ✅ Auto cache-hit |
80
+ | Skill Creator + Catalog | ❌ | ✅ 45+ composable skills |
81
+ | Platform Setup Wizard | ❌ | ✅ One-shot config |
82
+
83
+ ---
84
+
61
85
  ## 🌐 Platform Support
62
86
 
63
87
  The framework automatically detects your AI coding environment and activates the best available features:
@@ -276,24 +300,30 @@ Use these keywords, commands, and phrases to trigger specific capabilities:
276
300
 
277
301
  ### Skill Trigger Keywords (Natural Language)
278
302
 
279
- | Category | Trigger Words / Phrases | Skill Activated |
280
- | ----------------- | --------------------------------------------------------------------- | ----------------------------------- |
281
- | **Memory** | "don't use cache", "no cache", "skip memory", "fresh" | Memory opt-out |
282
- | **Research** | "research my docs", "deep search", "@notebooklm", "query my notebook" | `notebooklm-rag` (Deep RAG) |
283
- | **Documentation** | "update docs", "regenerate catalog", "sync documentation" | `documentation` |
284
- | **Quality** | "lint", "format", "check", "validate", "static analysis" | `lint-and-validate` |
285
- | **Testing** | "write tests", "run tests", "TDD", "test coverage" | `testing-patterns` / `tdd-workflow` |
286
- | **Architecture** | "design system", "architecture decision", "ADR", "trade-off" | `architecture` |
287
- | **Security** | "security scan", "vulnerability", "audit", "OWASP" | `red-team-tactics` |
288
- | **Performance** | "lighthouse", "bundle size", "core web vitals", "profiling" | `performance-profiling` |
289
- | **Design** | "design UI", "color scheme", "typography", "layout" | `frontend-design` |
290
- | **Deployment** | "deploy", "rollback", "release", "CI/CD" | `deployment-procedures` |
291
- | **API** | "REST API", "GraphQL", "tRPC", "API design" | `api-patterns` |
292
- | **Database** | "schema design", "migration", "query optimization" | `database-design` |
293
- | **Planning** | "plan this", "break down", "task list", "requirements" | `plan-writing` |
294
- | **Brainstorming** | "explore options", "what are the approaches", "pros and cons" | `brainstorming` |
295
- | **Code Review** | "review this", "code quality", "best practices" | `code-review-checklist` |
296
- | **i18n** | "translate", "localization", "RTL", "locale" | `i18n-localization` |
303
+ | Category | Trigger Words / Phrases | Skill Activated |
304
+ | ------------------ | ---------------------------------------------------------------------- | ----------------------------------- |
305
+ | **Memory** | "don't use cache", "no cache", "skip memory", "fresh" | Memory opt-out |
306
+ | **Research** | "research my docs", "check my notebooks", "deep search", "@notebooklm" | `notebooklm-rag` |
307
+ | **Documentation** | "update docs", "regenerate catalog", "sync documentation" | `documentation` |
308
+ | **Quality** | "lint", "format", "check", "validate", "static analysis" | `lint-and-validate` |
309
+ | **Testing** | "write tests", "run tests", "TDD", "test coverage" | `testing-patterns` / `tdd-workflow` |
310
+ | **TDD** | "test first", "red green refactor", "failing test" | `test-driven-development` |
311
+ | **Plan Execution** | "execute plan", "run the plan", "batch execution" | `executing-plans` |
312
+ | **Verification** | "verify", "prove it works", "evidence", "show me the output" | `verification-before-completion` |
313
+ | **Debugging** | "debug", "root cause", "investigate", "why is this failing" | `systematic-debugging` |
314
+ | **Architecture** | "design system", "architecture decision", "ADR", "trade-off" | `architecture` |
315
+ | **Security** | "security scan", "vulnerability", "audit", "OWASP" | `red-team-tactics` |
316
+ | **Performance** | "lighthouse", "bundle size", "core web vitals", "profiling" | `performance-profiling` |
317
+ | **Design** | "design UI", "color scheme", "typography", "layout" | `frontend-design` |
318
+ | **Deployment** | "deploy", "rollback", "release", "CI/CD" | `deployment-procedures` |
319
+ | **API** | "REST API", "GraphQL", "tRPC", "API design" | `api-patterns` |
320
+ | **Database** | "schema design", "migration", "query optimization" | `database-design` |
321
+ | **Planning** | "plan this", "break down", "task list", "requirements" | `plan-writing` |
322
+ | **Brainstorming** | "explore options", "what are the approaches", "pros and cons" | `brainstorming` |
323
+ | **Code Review** | "review this", "code quality", "best practices" | `code-review-checklist` |
324
+ | **i18n** | "translate", "localization", "RTL", "locale" | `i18n-localization` |
325
+ | **AWS** | "terraform", "EKS", "Lambda", "S3", "CloudFront" | `aws` / `aws-terraform` |
326
+ | **Infrastructure** | "Consul", "service mesh", "OpenSearch" | `consul` / `opensearch` |
297
327
 
298
328
  ### Memory System Commands
299
329
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@techwavedev/agi-agent-kit",
3
- "version": "1.2.6",
3
+ "version": "1.2.8",
4
4
  "description": "Enterprise-Grade Agentic Framework - Modular skill-based AI assistant toolkit with deterministic execution, semantic memory, and platform-adaptive orchestration.",
5
5
  "bin": {
6
6
  "agi-agent-kit": "./bin/init.js"
@@ -0,0 +1,315 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.2.8] - 2026-02-14
9
+
10
+ ### Added
11
+
12
+ - **Superpowers Adaptation**: Adapted best patterns from [obra/superpowers](https://github.com/obra/superpowers) into the agi framework, extending it with structured execution, TDD enforcement, and verification gates while preserving all existing multi-platform, memory, and agent capabilities.
13
+
14
+ **New Skills:**
15
+ - **`executing-plans`**: Structured plan execution with two modes — Batch (3 tasks + human checkpoint) or Subagent-Driven (fresh agent per task + two-stage review: spec compliance then code quality). Platform-adaptive across Claude Code, Gemini, Kiro, and Opencode.
16
+ - **`test-driven-development`**: Iron-law TDD enforcement with RED-GREEN-REFACTOR cycle, rationalization prevention table, and verification checklist. "No production code without a failing test first."
17
+ - **`verification-before-completion`**: Universal evidence gate — no completion claims without fresh verification output. Integrates with agi audit scripts (`checklist.py`, `security_scan.py`, `lint_runner.py`, etc.).
18
+
19
+ ### Changed
20
+
21
+ - **`systematic-debugging`**: Replaced lightweight 110-line version with comprehensive 4-phase methodology (Root Cause Investigation → Pattern Analysis → Hypothesis Testing → Implementation). Includes iron law, multi-component evidence gathering, rationalization table, and real-world impact stats (95% vs 40% first-time fix rate).
22
+ - **`plan-writing`**: Added TDD step structure template (write test → verify fail → implement → verify pass → commit), bite-sized task granularity (2-5 min per step), and execution handoff to `executing-plans` skill.
23
+ - **`brainstorming`**: Added HARD-GATE (no code before design approval), propose 2-3 approaches step, and design document saving with handoff to `plan-writing`.
24
+ - **`orchestrator`** agent: Added two-stage review protocol (spec compliance then code quality), execution mode selection (batch vs subagent), verification gate, and referenced skills table.
25
+ - **`parallel-agents`**: Added focused agent prompt structure template, explicit "when NOT to use" heuristic, and review-and-integrate protocol with `verification-before-completion` gate.
26
+ - **`debugger`** agent: Added enhanced skills integration table referencing `systematic-debugging`, `test-driven-development`, and `verification-before-completion`.
27
+ - **`SKILLS_CATALOG.md`**: Regenerated with 45 template skills (3 new: `executing-plans`, `test-driven-development`, `verification-before-completion`).
28
+
29
+ ### Why This Is More Complete Than Superpowers
30
+
31
+ > All superpowers patterns were adopted. The agi framework extends them with capabilities superpowers does not have.
32
+
33
+ | Capability | obra/superpowers | agi Framework |
34
+ | ----------------------------- | :-----------------: | :---------------------------------------------: |
35
+ | TDD Enforcement | ✅ | ✅ (adapted) |
36
+ | Plan Execution with Review | ✅ | ✅ (adapted + platform-adaptive) |
37
+ | Systematic Debugging | ✅ | ✅ (adapted + `debugger` agent integration) |
38
+ | Verification Gates | ✅ | ✅ (adapted + agi script integration) |
39
+ | Two-Stage Code Review | ✅ | ✅ (adapted into orchestrator) |
40
+ | Git Worktrees | ✅ | ➖ (standard branches used) |
41
+ | Multi-Platform Orchestration | ❌ Claude Code only | ✅ 4 platforms (Claude, Gemini, Kiro, Opencode) |
42
+ | Semantic Memory (Qdrant) | ❌ | ✅ 90-100% token savings |
43
+ | 19 Specialist Agents | ❌ | ✅ Domain-specific boundaries |
44
+ | Agent Boundary Enforcement | ❌ | ✅ File-type ownership protocol |
45
+ | Dynamic Question Generation | ❌ | ✅ Trade-off tables, priorities |
46
+ | 12 Audit/Verification Scripts | ❌ | ✅ Security, lint, UX, SEO, Lighthouse |
47
+ | Memory-First Protocol | ❌ | ✅ Auto cache-hit before work |
48
+ | Skill Creator + Catalog | ❌ | ✅ 45+ composable skills |
49
+ | Platform Setup Wizard | ❌ | ✅ One-shot auto-configuration |
50
+
51
+ ## [1.2.7] - 2026-02-11
52
+
53
+ ### Security & Maintenance
54
+
55
+ - **Repository Sanitization**: Removed all internal development configurations (`.agent`, `.claude`, `.gemini`) and private skills from the public repository.
56
+ - **Workflow Hardening**: Enforced fork-and-PR workflow in `CONTRIBUTING.md`.
57
+ - **Community Standards**: Added issue templates and PR templates.
58
+
59
+ ## [1.2.6] - 2026-02-10
60
+
61
+ ### Added
62
+
63
+ - **notebooklm-rag (Deep RAG)**: MCP-first autonomous knowledge backend powered by Google NotebookLM + Gemini. The agent fully manages NotebookLM via MCP tools — authentication, library CRUD, querying with auto follow-ups, and Qdrant caching for token savings and cross-session context keeping. Includes fallback Python scripts (Patchright browser automation) when MCP is unavailable. Opt-in for users with Google accounts; default RAG remains `qdrant-memory`. Based on [PleasePrompto/notebooklm-skill](https://github.com/PleasePrompto/notebooklm-skill) (MIT).
64
+
65
+ ### Removed
66
+
67
+ - **notebooklm-mcp**: Merged into `notebooklm-rag`. The comprehensive Deep RAG skill supersedes the basic MCP connector.
68
+
69
+ ### Fixed
70
+
71
+ - **npmignore**: Fixed deep-path glob patterns (`**/__pycache__/`, `**/*.pyc`, `**/data/`) preventing compiled Python files and sensitive data from leaking into the published NPM package.
72
+
73
+ ## [1.2.5] - 2026-02-09
74
+
75
+ ### Fixed
76
+
77
+ - **Documentation Updates**: README updated to reflect current version and removed internal skill references.
78
+
79
+ ## [1.2.4] - 2026-02-09
80
+
81
+ ### Fixed
82
+
83
+ - **Minor bug fixes**: Addressed issues from v1.2.3 release.
84
+
85
+ ## [1.2.3] - 2026-02-09
86
+
87
+ ### Added
88
+
89
+ - **Auto Python Virtual Environment**: `npx init` now auto-creates `.venv/` and installs all dependencies — eliminates the `externally-managed-environment` error on macOS.
90
+ - **Auto Platform Setup**: `npx init` runs `platform_setup.py --auto` after venv creation, pre-configuring platform-specific settings (`.claude/settings.json`, `.claude/skills/`) and showing remaining manual steps.
91
+ - **Activation Reference Table** (README): Comprehensive reference with 4 sections — 14 slash commands, 8 `@agent` mentions, 18 natural language trigger keyword categories, and 6 memory system commands.
92
+ - **Semantic Memory Section** (README): Setup guide with Qdrant + Ollama commands, token savings table (90-100% savings), and usage examples.
93
+ - **`pyright`** added to `requirements.txt` for Python type checking out of the box.
94
+
95
+ ### Changed
96
+
97
+ - **`requirements.txt`**: Expanded from 6 to 12 packages across 5 organized sections (Core, Memory, Embeddings, Cloud, Testing & Auditing). Every dependency is documented with inline comments.
98
+ - **`bin/init.js`**: Added `setupPythonEnv()` and `runPlatformSetup()` functions. Uses `child_process.execSync` for venv creation and `pip install`. Cross-platform support (macOS/Linux/Windows paths).
99
+ - **README Prerequisites**: No longer tells users to `pip install` manually — now references auto-created `.venv` with activation command.
100
+ - **Post-install message**: Step 1 is now "Activate the Python environment" instead of "Install Python dependencies."
101
+ - **Templates synced**: `requirements.txt`, `README.md` copied to `templates/base/` for NPX distribution.
102
+ - **Documentation SKILL.md**: `Last Updated` timestamp refreshed to 2026-02-09.
103
+ - **SKILLS_CATALOG.md**: Regenerated with 56 skills.
104
+
105
+ ### Fixed
106
+
107
+ - **`ModuleNotFoundError: No module named 'yaml'`**: `pyyaml` was missing from `requirements.txt` — `system_checkup.py` crashed on fresh installs. Now included in core dependencies.
108
+ - **Missing dependencies**: `gitpython`, `ollama`, `sentence-transformers`, `playwright` were used by skills but not listed in `requirements.txt`. All now included.
109
+ - **`--auto-apply` flag**: `init.js` called `platform_setup.py` with non-existent `--auto-apply` flag — fixed to use existing `--auto` flag.
110
+
111
+ ## [1.2.2] - 2026-02-09
112
+
113
+ ### Added
114
+
115
+ - **Platform-Adaptive Multi-Agent Orchestration** (`parallel-agents` v2.0):
116
+ - **Strategy A: Claude Code Agent Teams** — True parallel multi-agent orchestration via tmux/in-process sessions. Requires `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1`.
117
+ - **Strategy B: Claude Code Subagents** — Background/foreground task orchestration via `Task()` tool with `context: fork`.
118
+ - **Strategy C: Sequential Personas** — Universal fallback for Gemini, Opencode, and other platforms using `@agent` persona switching.
119
+ - **Strategy D: Kiro Autonomous Agent** — Async parallel task execution in sandboxed environments with PR-based delivery and cross-repo coordination.
120
+ - Automatic platform detection and strategy selection.
121
+ - Subagent configuration reference (frontmatter, tools, permissions, model, memory).
122
+ - Full Claude Code subagent lifecycle documentation (create, configure, invoke, manage).
123
+
124
+ - **Kiro IDE Powers & Autonomous Agent Support**:
125
+ - Full Kiro Powers documentation: `POWER.md` anatomy, frontmatter keywords activation, onboarding sections, steering files, `mcp.json` configuration with auto-namespacing.
126
+ - Kiro Hooks system (`.kiro/hooks/`) with JSON structure and automated behaviors.
127
+ - Kiro Autonomous Agent: sandboxed execution, PR-based reviews, cross-repo coordination, learning from code reviews.
128
+ - 12 curated launch partner Powers documented (Figma, Supabase, Stripe, Neon, Netlify, Postman, Strands, Datadog, Dynatrace, AWS CDK, Terraform, Aurora).
129
+ - **Antigravity ↔ Kiro mapping guide**: Skill-to-Power conversion workflow, directory mapping, frontmatter translation.
130
+
131
+ - **Plugin & Extension Auto-Discovery** (`plugin-discovery` v1.1.0 — NEW SKILL):
132
+ - Cross-platform extension auto-discovery for Claude Code, Kiro IDE, Gemini, and Opencode.
133
+ - Claude Code: Plugin marketplace guide (official + custom), LSP plugins by language, service integrations, scopes, subagent/skill discovery.
134
+ - Kiro: Full Powers discovery, installation guide (IDE, kiro.dev, GitHub, local path), setup checklist.
135
+ - Gemini/Opencode: Skills catalog discovery, MCP server detection.
136
+ - Cross-platform compatibility map (11 features × 4 platforms).
137
+
138
+ - **One-Shot Platform Setup Wizard** (`platform_setup.py`):
139
+ - Auto-detects platform: Claude Code, Kiro IDE, Gemini, Opencode.
140
+ - Scans project tech stack: languages (JS/TS/Python/Go/Rust/Ruby), frameworks (Next.js/React/Vue/Express/Angular/Svelte/Astro/React Native), services (GitHub/GitLab/Docker/Vercel/Netlify/Stripe/Supabase/Firebase/Terraform).
141
+ - Generates prioritized recommendations with `🔴 High` / `🟡 Medium` / `🟢 Low` indicators.
142
+ - Auto-applies configurable settings (Agent Teams, directory creation, hook setup) with single `Y/n` confirmation.
143
+ - Shows manual instructions for platform-only actions (plugin installs, Power installs).
144
+ - 4 modes: interactive, `--auto`, `--dry-run`, `--json`.
145
+ - New `/setup` workflow with `// turbo` annotation for auto-run.
146
+
147
+ - **Intelligent Routing v2.0** (`intelligent-routing` v2.0):
148
+ - Platform detection at session start (Claude Code, Kiro IDE, Gemini, Opencode).
149
+ - Proactive capability announcements per platform.
150
+ - Team Leader mode for Claude Code with Agent Teams enabled.
151
+ - Powers-driven orchestration mode for Kiro IDE.
152
+ - Proactive feature recommendations: suggests Agent Teams, plugins, Powers, Autonomous Agent when not enabled.
153
+ - Multi-domain task routing adapts to best available parallelism strategy.
154
+
155
+ - **Memory System Integration** (`session_boot.py` — NEW SCRIPT):
156
+ - `execution/session_boot.py` — Single entry point for session initialization. Checks Qdrant, Ollama, embedding models, and collections in one command. `--auto-fix` flag auto-pulls missing models and creates collections.
157
+ - **Session Boot Protocol** added as the **first section** in `AGENTS.md` — agents run `python3 execution/session_boot.py --auto-fix` before any work begins.
158
+ - `AGENTS.md` Memory-First section rewritten with explicit CLI commands: `memory_manager.py auto`, `store`, `cache-store` with decision tree table.
159
+ - `platform_setup.py` now detects full memory system: Qdrant status, Ollama status, embedding model presence, collection existence, point counts.
160
+ - Memory recommendations engine: suggests starting Qdrant/Ollama, pulling embedding model, or initializing collections when issues are detected.
161
+ - Memory report section (🧠) in platform setup output shows live system status.
162
+
163
+ ### Changed
164
+
165
+ - **`parallel-agents`**: Rewritten from v1.0 to v2.0 — now platform-adaptive with 4 orchestration strategies instead of 1.
166
+ - **`intelligent-routing`**: Rewritten from v1.0 to v2.0 — now includes platform detection, proactive recommendations, and Kiro support.
167
+ - **Cross-Platform Compatibility Map**: Updated with 2 new rows (Dynamic MCP Loading, Cross-Repo Tasks) and accurate Kiro feature coverage.
168
+ - **`package.json`**: Added `kiro`, `opencode`, and `platform-adaptive` keywords for NPM discoverability.
169
+ - **Templates**: All modified skills (`parallel-agents`, `intelligent-routing`, `plugin-discovery`) and scripts (`platform_setup.py`) synced to `templates/skills/knowledge/` for NPX distribution.
170
+ - **SKILLS_CATALOG.md**: Regenerated with 56 skills, including the new `plugin-discovery` skill.
171
+ - **`bin/init.js`**: NPX init now copies `execution/` scripts (session_boot.py, session_init.py, memory_manager.py) and `directives/` (memory_integration.md) to scaffolded projects. Update function also refreshes these files.
172
+ - **Post-install message**: Now shows `session_boot.py --auto-fix` as step 3 after installation.
173
+ - **`/setup-memory` workflow**: Fixed stale references, now uses correct scripts (session_init.py, memory_manager.py).
174
+ - **`/setup` workflow**: Added memory system troubleshooting section with Docker/Ollama/collection init commands.
175
+
176
+ ### Fixed
177
+
178
+ - **Stale script references**: `/setup-memory` workflow referenced non-existent `init_memory_system.py` and `memory_middleware.py` — now correctly uses `session_init.py` and `memory_manager.py`.
179
+ - **Memory system unused**: Despite being installed, no agent instructions explicitly told agents WHEN to call the memory scripts. Now enforced via Session Boot Protocol at top of AGENTS.md.
180
+ - **`platform_setup.py` missing memory**: Setup wizard reported platform features but ignored Qdrant/Ollama status — now detects and recommends fixes.
181
+ - **`info` action missing**: Platform setup wizard didn't handle informational recommendations (e.g., "collections are empty") — added `info` action type with ℹ️ status icon.
182
+ - **Templates missing execution scripts**: NPX init created the `execution/` directory but didn't copy any scripts into it — now ships session_boot.py, session_init.py, and memory_manager.py.
183
+
184
+ ## [1.1.7] - 2026-02-07
185
+
186
+ ### Added
187
+
188
+ - **NotebookLM RAG Skill** (EC Scoped): New `notebooklm-rag` skill providing deep-search RAG capabilities powered by Google NotebookLM + Gemini 2.5. Complementary to `qdrant-memory` for explicit, document-grounded research.
189
+ - **B.L.A.S.T. Protocol**: Structured research workflow (Browse → Load → Ask → Synthesize → Transfer).
190
+ - **4 Research Modes**: Quick (single query), Deep (3-5 iterative), Cross-Ref (multi-notebook), Plan (doc-grounded planning).
191
+ - **Confidence Classification**: Automatic HIGH/MEDIUM/LOW categorization with source attribution.
192
+ - `scripts/research_query.py` — Generates structured research questions by mode.
193
+ - `scripts/research_report.py` — Formats findings into Markdown/JSON reports with confidence levels and knowledge gap analysis.
194
+ - `scripts/preflight_check.py` — Pre-flight validation checklist for MCP server, auth, and library.
195
+ - `references/research_patterns.md` — Workflow templates, query optimization, rate limit strategies.
196
+ - **Auto-Update in Skill Creator**: `init_skill.py` now auto-runs `update_catalog.py` and `sync_docs.py` after creating a new skill.
197
+ - Default ON — use `--no-auto-update` to skip.
198
+ - New `--skills-dir` flag for specifying catalog update target directory.
199
+ - Non-fatal: graceful warnings if documentation skill is not installed.
200
+
201
+ ### Changed
202
+
203
+ - **NotebookLM MCP Skill**: Migrated to `PleasePrompto/notebooklm-mcp` browser-automated implementation with full auth, library management, and stealth mode support.
204
+ - **Skill Creator Documentation** (`SKILL_skillcreator.md`):
205
+ - Step 3: Documents new auto-update behavior and `--no-auto-update` / `--skills-dir` flags.
206
+ - Step 6: Notes that manual catalog update is now only needed for modifications/deletions.
207
+ - **SKILLS_CATALOG.md**: Regenerated with 55 skills including `notebooklm-rag`.
208
+
209
+ ### Fixed
210
+
211
+ - **`init_skill.py` argument parsing**: Migrated from fragile positional parsing (`sys.argv`) to robust `argparse` with proper help text and validation.
212
+ - **`sync_docs.py` invocation**: Fixed `--update-catalog` flag to pass `"true"` as required value (not just the bare flag).
213
+
214
+ ## [1.1.6] - 2026-02-07
215
+
216
+ ### Added
217
+
218
+ - **37 Knowledge Skills Promoted to Root**: All knowledge-pack skills now live at `skills/` root alongside core skills for unified access:
219
+ - `api-patterns`, `app-builder`, `architecture`, `bash-linux`, `behavioral-modes`, `brainstorming`, `clean-code`, `code-review-checklist`, `database-design`, `deployment-procedures`, `documentation-templates`, `frontend-design`, `game-development`, `geo-fundamentals`, `i18n-localization`, `intelligent-routing`, `lint-and-validate`, `mcp-builder`, `mobile-design`, `nextjs-best-practices`, `nodejs-best-practices`, `parallel-agents`, `performance-profiling`, `plan-writing`, `powershell-windows`, `python-patterns`, `react-patterns`, `red-team-tactics`, `seo-fundamentals`, `server-management`, `systematic-debugging`, `tailwind-patterns`, `tdd-workflow`, `testing-patterns`, `vulnerability-scanner`, `webapp-testing`.
220
+ - **NotebookLM MCP Skill**: New `notebooklm-mcp` skill to interact with Google NotebookLM via Model Context Protocol, with documentation, example script, and reference assets.
221
+ - **Opencode Support**: Added `OPENCODE.md` configuration file for Opencode editor compatibility with `opencode-antigravity-auth` plugin.
222
+ - **Execution Scripts**: Two new deterministic execution scripts:
223
+ - `memory_manager.py` — Centralized memory management for Qdrant operations.
224
+ - `session_init.py` — Session initialization and context bootstrapping.
225
+ - **Stitch Skills in Templates**: `design-md`, `react-components`, and `stitch-loop` now included in knowledge templates (`templates/skills/knowledge/`) for NPX distribution.
226
+ - **Self-Update in Templates**: `self-update` skill with `update_kit.py` added to knowledge templates.
227
+ - **Knowledge SKILLS_CATALOG**: New comprehensive `SKILLS_CATALOG.md` inside `templates/skills/knowledge/` for template-level skill discovery.
228
+
229
+ ### Changed
230
+
231
+ - **AGENTS.md**: Added "Getting Started" section with installation, dependency, and update instructions.
232
+ - **Memory Integration Directive**: Complete rewrite of `directives/memory_integration.md` — simplified from 211 lines to 95 lines with clearer goal/inputs/execution structure and Ollama embedding documentation.
233
+ - **Skill Creator**: Updated `SKILL_skillcreator.md` with refined skill creation guidelines.
234
+ - **SKILLS_CATALOG.md**: Expanded with 560+ lines of new skill entries covering all promoted knowledge skills.
235
+ - **Documentation Skill**: Updated `skills/documentation/SKILL.md` with improved detection and sync logic.
236
+ - **Template Hierarchy Restructured**: Shifted standalone template skills (`design-md`, `react-components`, `stitch-loop`) into `templates/skills/knowledge/` for consistent NPX packaging.
237
+
238
+ ### Improved
239
+
240
+ - **Core Skill Definitions**: Refined SKILL.md files across `pdf-reader`, `qdrant-memory`, and `webcrawler` with updated descriptions, triggers, and references.
241
+ - **Qdrant Memory Scripts**: Updated all 7 scripts (`benchmark_token_savings.py`, `embedding_utils.py`, `hybrid_search.py`, `init_collection.py`, `memory_retrieval.py`, `semantic_cache.py`, `test_skill.py`) with improved patterns.
242
+ - **Knowledge Skill Documentation**: Mass update of SKILL.md definitions across 36+ knowledge skills with enhanced frontmatter, triggers, and reference content in templates.
243
+ - **Audit Scripts**: Updated `ux_audit.py`, `security_scan.py`, `lighthouse_audit.py`, `test_runner.py`, `playwright_runner.py`, and `seo_checker.py` in templates.
244
+
245
+ ### Fixed
246
+
247
+ - **Version Bump**: Package version correctly set to `1.1.6` in `package.json`.
248
+ - **Template Cleanup**: Removed duplicate standalone Stitch skill templates (`templates/skills/design-md/`, `templates/skills/react-components/`, `templates/skills/stitch-loop/`), consolidated into `templates/skills/knowledge/`.
249
+ - **Removed `verify_public_release.py`**: Deprecated top-level verification script removed (functionality integrated into CI/CD pipeline).
250
+
251
+ ## [1.1.5] - 2026-01-27
252
+
253
+ ### Added
254
+
255
+ - **Stitch Skills Suite**: Added three new skills from Google Stitch:
256
+ - `design-md`: Analyzes Stitch projects to synthesize semantic `DESIGN.md` systems.
257
+ - `react-components`: Converts Stitch screens into modular, validating React components.
258
+ - `stitch-loop`: Orchestrates autonomous iterative website building loops.
259
+ - **Memory Integration**: Integrated `qdrant-memory` into the Stitch skills suite for:
260
+ - Storing design systems for future retrieval (`design-md`).
261
+ - Retrieving code patterns and interfaces (`react-components`).
262
+ - Leveraging past decisions and project context (`stitch-loop`).
263
+
264
+ ## [1.1.2] - 2026-01-23
265
+
266
+ ### Added
267
+
268
+ - **Self-Update Skill**: New `self-update` skill with `update_kit.py` script for easy framework updates.
269
+ - **System Checkup**: New `system_checkup.py` execution script to verify agents, skills, workflows, and scripts.
270
+ - **Workflows**: Added `/checkup` and `/update` workflows for quick access.
271
+
272
+ ### Changed
273
+
274
+ - Updated `README.md` with comprehensive Quick Start, Commands, and Architecture sections.
275
+ - Updated `SKILLS_CATALOG.md` to include self-update skill.
276
+
277
+ ## [1.1.01] - 2026-01-23
278
+
279
+ ### Fixed
280
+
281
+ - Stabilized Full Suite activation.
282
+ - Micro-bump for polish releases.
283
+
284
+ ## [1.1.0] - 2026-01-23
285
+
286
+ ### Added
287
+
288
+ - **Knowledge Pack**: Imported 36+ new skills from `agents-web` including:
289
+ - `api-patterns`: Best practices for REST/GraphQL/tRPC.
290
+ - `frontend-design`: UX/UI principles and audit tools.
291
+ - `security-auditor`: Vulnerability scanning and red-team tactics.
292
+ - `mobile-design`: iOS/Android development patterns.
293
+ - **Agent Roles**: Added `project-planner`, `orchestrator`, and `security-auditor` agent personas.
294
+ - **Rules**: Added global `deployment_policy` and `clean-code` standards.
295
+
296
+ ### Changed
297
+
298
+ - Refactored `init` command to support `knowledge` pack.
299
+ - Enhanced `AGENTS.md` with new agent capabilities.
300
+ - Updated `SKILLS_CATALOG.md` with full list of new skills.
301
+
302
+ ## [1.0.1] - 2026-01-23
303
+
304
+ ### Fixed
305
+
306
+ - **Security**: Removed all references to private infrastructure from public templates.
307
+ - **Safety**: Added `verify_public_release.py` to prevent accidental publication of private secrets.
308
+ - **Menu**: Fixed `init` menu showing internal options.
309
+
310
+ ## [0.1.0] - 2026-01-23
311
+
312
+ ### Initial Release
313
+
314
+ - Core framework with `webcrawler`, `pdf-reader`, and `qdrant-memory`.
315
+ - CLI tool `agi-agent-kit` for scaffolding.
@@ -7,7 +7,7 @@
7
7
 
8
8
  `@techwavedev/agi-agent-kit` is a modular, deterministic framework designed to bridge the gap between LLM reasoning and reliable production execution. It scaffolds a "3-Layer Architecture" (Intent → Orchestration → Execution) that forces agents to use tested scripts rather than hallucinating code.
9
9
 
10
- **v1.2.6** — Now with platform-adaptive orchestration and integrated semantic memory across Claude Code, Kiro IDE, Gemini, and Opencode.
10
+ **v1.2.8** — Now with structured plan execution, TDD enforcement, verification gates (adapted from [obra/superpowers](https://github.com/obra/superpowers)), plus platform-adaptive orchestration and semantic memory across Claude Code, Kiro IDE, Gemini, and Opencode.
11
11
 
12
12
  ---
13
13
 
@@ -48,16 +48,40 @@ This checks Qdrant, Ollama, embedding models, and collections — auto-fixing an
48
48
  | Feature | Description |
49
49
  | ----------------------------- | --------------------------------------------------------------------------- |
50
50
  | **Deterministic Execution** | Separates business logic (Python scripts) from AI reasoning (Directives) |
51
- | **Modular Skill System** | 56 plug-and-play skills that can be added or removed instantly |
51
+ | **Modular Skill System** | 45+ plug-and-play skills that can be added or removed instantly |
52
+ | **Structured Plan Execution** | Batch or subagent-driven execution with two-stage review (spec + quality) |
53
+ | **TDD Enforcement** | Iron-law RED-GREEN-REFACTOR cycle — no production code without failing test |
54
+ | **Verification Gates** | Evidence before claims — no completion without fresh verification output |
52
55
  | **Platform-Adaptive** | Auto-detects and optimizes for Claude Code, Kiro IDE, Gemini, and Opencode |
53
56
  | **Multi-Agent Orchestration** | Agent Teams, subagents, Powers, or sequential personas — adapts to platform |
54
57
  | **Semantic Memory** | Built-in Qdrant-powered memory with 95% token savings via caching |
55
- | **Deep RAG (NotebookLM)** | Opt-in autonomous research via Google NotebookLM + Gemini, fully MCP-driven |
56
58
  | **Self-Healing Workflows** | Agents read error logs, patch scripts, and update directives automatically |
57
59
  | **One-Shot Setup** | Platform detection + project stack scan + auto-configuration in one command |
58
60
 
59
61
  ---
60
62
 
63
+ ## 🆚 How This Compares to Superpowers
64
+
65
+ The agi framework adopts all best patterns from [obra/superpowers](https://github.com/obra/superpowers) and extends them with capabilities superpowers does not have:
66
+
67
+ | Capability | obra/superpowers | agi Framework |
68
+ | ---------------------------- | :--------------: | :----------------------------: |
69
+ | TDD Enforcement | ✅ | ✅ Adapted |
70
+ | Plan Execution + Review | ✅ | ✅ Adapted + platform-adaptive |
71
+ | Systematic Debugging | ✅ | ✅ Adapted + `debugger` agent |
72
+ | Verification Gates | ✅ | ✅ Adapted + 12 audit scripts |
73
+ | Two-Stage Code Review | ✅ | ✅ Adapted into orchestrator |
74
+ | Multi-Platform Orchestration | ❌ Claude only | ✅ 4 platforms |
75
+ | Semantic Memory (Qdrant) | ❌ | ✅ 90-100% token savings |
76
+ | 19 Specialist Agents | ❌ | ✅ Domain boundaries |
77
+ | Agent Boundary Enforcement | ❌ | ✅ File-type ownership |
78
+ | Dynamic Question Generation | ❌ | ✅ Trade-offs + priorities |
79
+ | Memory-First Protocol | ❌ | ✅ Auto cache-hit |
80
+ | Skill Creator + Catalog | ❌ | ✅ 45+ composable skills |
81
+ | Platform Setup Wizard | ❌ | ✅ One-shot config |
82
+
83
+ ---
84
+
61
85
  ## 🌐 Platform Support
62
86
 
63
87
  The framework automatically detects your AI coding environment and activates the best available features:
@@ -276,24 +300,30 @@ Use these keywords, commands, and phrases to trigger specific capabilities:
276
300
 
277
301
  ### Skill Trigger Keywords (Natural Language)
278
302
 
279
- | Category | Trigger Words / Phrases | Skill Activated |
280
- | ----------------- | --------------------------------------------------------------------- | ----------------------------------- |
281
- | **Memory** | "don't use cache", "no cache", "skip memory", "fresh" | Memory opt-out |
282
- | **Research** | "research my docs", "deep search", "@notebooklm", "query my notebook" | `notebooklm-rag` (Deep RAG) |
283
- | **Documentation** | "update docs", "regenerate catalog", "sync documentation" | `documentation` |
284
- | **Quality** | "lint", "format", "check", "validate", "static analysis" | `lint-and-validate` |
285
- | **Testing** | "write tests", "run tests", "TDD", "test coverage" | `testing-patterns` / `tdd-workflow` |
286
- | **Architecture** | "design system", "architecture decision", "ADR", "trade-off" | `architecture` |
287
- | **Security** | "security scan", "vulnerability", "audit", "OWASP" | `red-team-tactics` |
288
- | **Performance** | "lighthouse", "bundle size", "core web vitals", "profiling" | `performance-profiling` |
289
- | **Design** | "design UI", "color scheme", "typography", "layout" | `frontend-design` |
290
- | **Deployment** | "deploy", "rollback", "release", "CI/CD" | `deployment-procedures` |
291
- | **API** | "REST API", "GraphQL", "tRPC", "API design" | `api-patterns` |
292
- | **Database** | "schema design", "migration", "query optimization" | `database-design` |
293
- | **Planning** | "plan this", "break down", "task list", "requirements" | `plan-writing` |
294
- | **Brainstorming** | "explore options", "what are the approaches", "pros and cons" | `brainstorming` |
295
- | **Code Review** | "review this", "code quality", "best practices" | `code-review-checklist` |
296
- | **i18n** | "translate", "localization", "RTL", "locale" | `i18n-localization` |
303
+ | Category | Trigger Words / Phrases | Skill Activated |
304
+ | ------------------ | ---------------------------------------------------------------------- | ----------------------------------- |
305
+ | **Memory** | "don't use cache", "no cache", "skip memory", "fresh" | Memory opt-out |
306
+ | **Research** | "research my docs", "check my notebooks", "deep search", "@notebooklm" | `notebooklm-rag` |
307
+ | **Documentation** | "update docs", "regenerate catalog", "sync documentation" | `documentation` |
308
+ | **Quality** | "lint", "format", "check", "validate", "static analysis" | `lint-and-validate` |
309
+ | **Testing** | "write tests", "run tests", "TDD", "test coverage" | `testing-patterns` / `tdd-workflow` |
310
+ | **TDD** | "test first", "red green refactor", "failing test" | `test-driven-development` |
311
+ | **Plan Execution** | "execute plan", "run the plan", "batch execution" | `executing-plans` |
312
+ | **Verification** | "verify", "prove it works", "evidence", "show me the output" | `verification-before-completion` |
313
+ | **Debugging** | "debug", "root cause", "investigate", "why is this failing" | `systematic-debugging` |
314
+ | **Architecture** | "design system", "architecture decision", "ADR", "trade-off" | `architecture` |
315
+ | **Security** | "security scan", "vulnerability", "audit", "OWASP" | `red-team-tactics` |
316
+ | **Performance** | "lighthouse", "bundle size", "core web vitals", "profiling" | `performance-profiling` |
317
+ | **Design** | "design UI", "color scheme", "typography", "layout" | `frontend-design` |
318
+ | **Deployment** | "deploy", "rollback", "release", "CI/CD" | `deployment-procedures` |
319
+ | **API** | "REST API", "GraphQL", "tRPC", "API design" | `api-patterns` |
320
+ | **Database** | "schema design", "migration", "query optimization" | `database-design` |
321
+ | **Planning** | "plan this", "break down", "task list", "requirements" | `plan-writing` |
322
+ | **Brainstorming** | "explore options", "what are the approaches", "pros and cons" | `brainstorming` |
323
+ | **Code Review** | "review this", "code quality", "best practices" | `code-review-checklist` |
324
+ | **i18n** | "translate", "localization", "RTL", "locale" | `i18n-localization` |
325
+ | **AWS** | "terraform", "EKS", "Lambda", "S3", "CloudFront" | `aws` / `aws-terraform` |
326
+ | **Infrastructure** | "Consul", "service mesh", "OpenSearch" | `consul` / `opensearch` |
297
327
 
298
328
  ### Memory System Commands
299
329