@leejungkiin/awkit 1.7.4 → 1.7.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # AWKit — Antigravity Workflow Kit
2
2
 
3
- > Antigravity v12.5 · npm package v1.6.5 · Single Source of Truth · Symphony-first · Mindful execution
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 a project (first run or after major structure changes)
196
- npx @duytransipher/gitnexus analyze
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
- # 2) Setup MCP servers and editor integrations
199
- npx @duytransipher/gitnexus setup
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
  ---