@tdsoft-tech/aikit 0.1.9 → 0.1.12
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 +27 -0
- package/dist/cli.js +1377 -118
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +134 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +134 -0
- package/dist/mcp-server.js.map +1 -1
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.12] - 2024-12-28
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- 🎯 **One-Shot as OpenCode Agent** - Now available via `<tab>` key switching
|
|
7
|
+
- Added `one-shot` to the 8 available agents
|
|
8
|
+
- Users can now tab-switch between: plan, planner, build, rush, review, scout, explore, vision, one-shot
|
|
9
|
+
- Full workflow documentation in agent description
|
|
10
|
+
- Delegates to all specialist agents as needed
|
|
11
|
+
|
|
12
|
+
## [0.1.11] - 2024-12-28
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- 🚀 **One-Shot Mode (Beta)** - End-to-end autonomous task execution
|
|
16
|
+
- `/one-shot <task>` command for fully automated task completion
|
|
17
|
+
- 7-phase workflow: Requirements → Planning → Complexity → Execution → Testing → Verification → Completion
|
|
18
|
+
- Interactive requirements gathering with arrow-key navigation
|
|
19
|
+
- 3-level error recovery (auto-fix → alternative approach → user intervention)
|
|
20
|
+
- Quality gates with 3-attempt retry loop (typecheck, test, lint, build)
|
|
21
|
+
- Multi-level verification (gates + manual + deployment)
|
|
22
|
+
- Automatic task splitting for complex work
|
|
23
|
+
- Completion proof generation
|
|
24
|
+
- Beta feedback collection
|
|
25
|
+
- 📚 New documentation: `docs/ONE_SHOT_MODE.md` - Complete user guide
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- 🐛 Fix postinstall.js directory copying - now properly handles nested skill directories
|
|
29
|
+
|
|
3
30
|
## [Unreleased]
|
|
4
31
|
|
|
5
32
|
### Added
|