@vpxa/aikit 0.1.56 → 0.1.57
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/package.json +1 -1
- package/scaffold/adapters/copilot.mjs +5 -4
- package/scaffold/general/prompts/aikit-ask.prompt.md +0 -8
- package/scaffold/general/prompts/aikit-debug.prompt.md +0 -11
- package/scaffold/general/prompts/aikit-design.prompt.md +0 -8
- package/scaffold/general/prompts/aikit-flow-add.prompt.md +0 -8
- package/scaffold/general/prompts/aikit-flow-create.prompt.md +0 -8
- package/scaffold/general/prompts/aikit-flow-manage.prompt.md +0 -9
- package/scaffold/general/prompts/aikit-implement.prompt.md +0 -10
- package/scaffold/general/prompts/aikit-plan.prompt.md +0 -10
- package/scaffold/general/prompts/aikit-review.prompt.md +0 -8
package/package.json
CHANGED
|
@@ -184,13 +184,14 @@ ${FLOWS_SECTION}
|
|
|
184
184
|
// ─── Prompt file generator ────────────────────────────────────────────────
|
|
185
185
|
|
|
186
186
|
function generatePrompt(_name, def) {
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
// NOTE: Do NOT emit a `tools:` field in prompt files.
|
|
188
|
+
// Prompt `tools:` is an exclusive allowlist in VS Code — it replaces the
|
|
189
|
+
// agent's tools entirely. Since prompts only list aikit/* MCP tools (which
|
|
190
|
+
// are all deferred), the API rejects with "All tools cannot be deferred."
|
|
191
|
+
// Omitting `tools:` lets the prompt inherit the full tool set from `agent:`.
|
|
189
192
|
return `---
|
|
190
193
|
description: "${def.description}"
|
|
191
194
|
agent: "${def.agent}"
|
|
192
|
-
tools:
|
|
193
|
-
${toolsYaml}
|
|
194
195
|
---
|
|
195
196
|
|
|
196
197
|
${def.content}
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Quick research question — find answer using AI Kit + web search"
|
|
3
3
|
agent: "Researcher-Alpha"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/search
|
|
6
|
-
- aikit/web_search
|
|
7
|
-
- aikit/web_fetch
|
|
8
|
-
- aikit/compact
|
|
9
|
-
- aikit/file_summary
|
|
10
|
-
- aikit/remember
|
|
11
|
-
- aikit/present
|
|
12
4
|
---
|
|
13
5
|
|
|
14
6
|
## Quick Research
|
|
@@ -1,17 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Systematic error diagnosis: reproduce → trace → diagnose → fix → verify"
|
|
3
3
|
agent: "Debugger"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/search
|
|
6
|
-
- aikit/symbol
|
|
7
|
-
- aikit/trace
|
|
8
|
-
- aikit/blast_radius
|
|
9
|
-
- aikit/check
|
|
10
|
-
- aikit/test_run
|
|
11
|
-
- aikit/parse_output
|
|
12
|
-
- aikit/compact
|
|
13
|
-
- aikit/remember
|
|
14
|
-
- aikit/present
|
|
15
4
|
---
|
|
16
5
|
|
|
17
6
|
## Debug Workflow
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Collaborative design session — explore ideas, refine requirements, produce a design spec"
|
|
3
3
|
agent: "Orchestrator"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/search
|
|
6
|
-
- aikit/scope_map
|
|
7
|
-
- aikit/file_summary
|
|
8
|
-
- aikit/compact
|
|
9
|
-
- aikit/remember
|
|
10
|
-
- aikit/forge_classify
|
|
11
|
-
- aikit/present
|
|
12
4
|
---
|
|
13
5
|
|
|
14
6
|
## Design Session
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Install a new flow from a git URL or local path — with interactive error recovery"
|
|
3
3
|
agent: "Orchestrator"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/flow_add
|
|
6
|
-
- aikit/flow_list
|
|
7
|
-
- aikit/flow_info
|
|
8
|
-
- aikit/search
|
|
9
|
-
- aikit/compact
|
|
10
|
-
- aikit/file_summary
|
|
11
|
-
- aikit/present
|
|
12
4
|
---
|
|
13
5
|
|
|
14
6
|
## Flow Installation Assistant
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Create a new flow from scratch or migrate an existing workflow to aikit format"
|
|
3
3
|
agent: "Orchestrator"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/flow_add
|
|
6
|
-
- aikit/flow_list
|
|
7
|
-
- aikit/flow_info
|
|
8
|
-
- aikit/search
|
|
9
|
-
- aikit/compact
|
|
10
|
-
- aikit/file_summary
|
|
11
|
-
- aikit/present
|
|
12
4
|
---
|
|
13
5
|
|
|
14
6
|
## Flow Creation Assistant
|
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "List, inspect, update, and remove installed flows"
|
|
3
3
|
agent: "Orchestrator"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/flow_list
|
|
6
|
-
- aikit/flow_info
|
|
7
|
-
- aikit/flow_status
|
|
8
|
-
- aikit/flow_update
|
|
9
|
-
- aikit/flow_remove
|
|
10
|
-
- aikit/flow_start
|
|
11
|
-
- aikit/flow_reset
|
|
12
|
-
- aikit/present
|
|
13
4
|
---
|
|
14
5
|
|
|
15
6
|
## Flow Management
|
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Full lifecycle implementation: plan → build → review → commit"
|
|
3
3
|
agent: "Orchestrator"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/search
|
|
6
|
-
- aikit/scope_map
|
|
7
|
-
- aikit/forge_ground
|
|
8
|
-
- aikit/check
|
|
9
|
-
- aikit/test_run
|
|
10
|
-
- aikit/blast_radius
|
|
11
|
-
- aikit/remember
|
|
12
|
-
- aikit/audit
|
|
13
|
-
- aikit/present
|
|
14
4
|
---
|
|
15
5
|
|
|
16
6
|
## Implementation Pipeline
|
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Create a detailed TDD implementation plan without executing it"
|
|
3
3
|
agent: "Planner"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/search
|
|
6
|
-
- aikit/scope_map
|
|
7
|
-
- aikit/forge_ground
|
|
8
|
-
- aikit/forge_classify
|
|
9
|
-
- aikit/file_summary
|
|
10
|
-
- aikit/analyze_structure
|
|
11
|
-
- aikit/analyze_dependencies
|
|
12
|
-
- aikit/remember
|
|
13
|
-
- aikit/present
|
|
14
4
|
---
|
|
15
5
|
|
|
16
6
|
## Planning Workflow
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: "Dual-model code + architecture review pipeline"
|
|
3
3
|
agent: "Orchestrator"
|
|
4
|
-
tools:
|
|
5
|
-
- aikit/search
|
|
6
|
-
- aikit/blast_radius
|
|
7
|
-
- aikit/check
|
|
8
|
-
- aikit/test_run
|
|
9
|
-
- aikit/analyze_dependencies
|
|
10
|
-
- aikit/remember
|
|
11
|
-
- aikit/present
|
|
12
4
|
---
|
|
13
5
|
|
|
14
6
|
## Review Pipeline
|