@leejungkiin/awkit 1.7.4 → 1.7.6
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/README.md +42 -5
- package/bin/awk.js +673 -15
- package/bin/codex-generators.js +2 -1
- package/core/GEMINI.md +6 -2
- package/core/GEMINI.md.bak +4 -0
- package/core/GreetingEngine/index.js +225 -0
- package/core/GreetingEngine/locales/en.json +6 -0
- package/core/GreetingEngine/locales/ja.json +6 -0
- package/core/GreetingEngine/locales/vi.json +6 -0
- package/core/GreetingEngine/test.js +37 -0
- package/core/skill-runtime-manifest.json +1 -0
- package/docs/PRD.md +57 -0
- package/docs/brainstorm_multi_agent_cli.md +211 -0
- package/docs/history/PRD.v1.md +55 -0
- package/docs/history/PRD.v2.md +57 -0
- package/docs/history/implementation_plan.v1.md +49 -45
- package/docs/history/implementation_plan.v2.md +87 -0
- package/docs/history/memoizedfibonacci_spec.v1.md +127 -0
- package/docs/specs/greetingapp_spec.md +97 -0
- package/docs/specs/memoizedfibonacci_spec.md +211 -0
- package/package.json +1 -1
- package/scripts/codex-goal.js +163 -0
- package/scripts/exec-rtk.js +4 -3
- package/scripts/multi-model-pipeline.js +292 -50
- package/scripts/qwen-exec.js +147 -0
- package/skills/claude-planner/SKILL.md +24 -0
- package/skills/codex-conductor/SKILL.md +25 -1
- package/skills/codex-goal/SKILL.md +82 -0
- package/skills/qwen-conductor/SKILL.md +100 -0
- package/workflows/lifecycle/goal.md +86 -0
- package/workflows/multi-agent-pipeline.md +52 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AWKit — Antigravity Workflow Kit
|
|
2
2
|
|
|
3
|
-
> Antigravity v12.
|
|
3
|
+
> Antigravity v12.6 · npm package v1.7.5 · Single Source of Truth · Symphony-first · Mindful execution
|
|
4
4
|
|
|
5
5
|
AWKit is a professional AI-agent orchestration framework. This repository is the single source of truth for workflows, skills, core rules (GEMINI.md), and installation tooling (no more scattered configs across multiple repos).
|
|
6
6
|
|
|
@@ -191,12 +191,49 @@ awkit tg send "Hello" --chat -100123456789 --topic 1234
|
|
|
191
191
|
|
|
192
192
|
AWKit integrates GitNexus for code intelligence and knowledge graphs.
|
|
193
193
|
|
|
194
|
+
You can run GitNexus commands directly via simplified top-level `awkit` shortcuts:
|
|
195
|
+
|
|
194
196
|
```bash
|
|
195
|
-
# 1) Build a knowledge graph for
|
|
196
|
-
|
|
197
|
+
# 1) Build/refresh a knowledge graph for the current codebase
|
|
198
|
+
awkit index
|
|
199
|
+
|
|
200
|
+
# 2) View current project index information (or 'awkit gn status')
|
|
201
|
+
awkit status gn
|
|
202
|
+
|
|
203
|
+
# 3) List all indexed repositories in the registry
|
|
204
|
+
awkit list
|
|
205
|
+
|
|
206
|
+
# 4) Interactively cleanup stale or unused indexes
|
|
207
|
+
awkit clean
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
## Multi-Agent & CLI Configuration
|
|
213
|
+
|
|
214
|
+
AWKit integrates third-party CLI agents (Claude, Codex, Qwen) to optimize reasoning quality and speed:
|
|
215
|
+
- **Claude CLI** ➜ Architect planning & complex reasoning (Gate 2/4)
|
|
216
|
+
- **Codex CLI** ➜ UI shell design, asset generation & reviews (Gate 2.5/5)
|
|
217
|
+
- **Qwen Coder** ➜ Fast local boilerplate code execution (Gate 4)
|
|
218
|
+
- **Gemini Flash** ➜ Central coordination, active context & fallback routing
|
|
219
|
+
|
|
220
|
+
### CLI Configuration & Runner Controls
|
|
221
|
+
|
|
222
|
+
Manage AI runners, tiers, and system alerts via `awkit config`:
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
# 1) List current configurations (runners, audio status, etc.)
|
|
226
|
+
awkit config list
|
|
227
|
+
|
|
228
|
+
# 2) Check runner status, binary paths, and system availability
|
|
229
|
+
awkit config runners
|
|
230
|
+
|
|
231
|
+
# 3) Show the project's active model policies and defaults
|
|
232
|
+
awkit config models
|
|
197
233
|
|
|
198
|
-
#
|
|
199
|
-
|
|
234
|
+
# 4) Enable/disable a runner or configure completion chimes
|
|
235
|
+
awkit config claude <on|off>
|
|
236
|
+
awkit config audio <on|off>
|
|
200
237
|
```
|
|
201
238
|
|
|
202
239
|
---
|