rrce-workflow 0.3.13 → 0.3.14
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 +12 -0
- package/dist/index.js +468 -514
- package/docs/AI_AGENT_GUIDE.md +65 -0
- package/package.json +1 -1
- package/dist/commands/selector.d.ts +0 -1
- package/dist/commands/selector.js +0 -29
- package/dist/commands/wizard/index.d.ts +0 -1
- package/dist/commands/wizard/index.js +0 -86
- package/dist/commands/wizard/link-flow.d.ts +0 -5
- package/dist/commands/wizard/link-flow.js +0 -97
- package/dist/commands/wizard/setup-flow.d.ts +0 -4
- package/dist/commands/wizard/setup-flow.js +0 -262
- package/dist/commands/wizard/sync-flow.d.ts +0 -4
- package/dist/commands/wizard/sync-flow.js +0 -67
- package/dist/commands/wizard/update-flow.d.ts +0 -4
- package/dist/commands/wizard/update-flow.js +0 -85
- package/dist/commands/wizard/utils.d.ts +0 -9
- package/dist/commands/wizard/utils.js +0 -33
- package/dist/commands/wizard/vscode.d.ts +0 -15
- package/dist/commands/wizard/vscode.js +0 -148
- package/dist/index.d.ts +0 -1
- package/dist/lib/autocomplete-prompt.d.ts +0 -14
- package/dist/lib/autocomplete-prompt.js +0 -167
- package/dist/lib/detection.d.ts +0 -44
- package/dist/lib/detection.js +0 -185
- package/dist/lib/git.d.ts +0 -12
- package/dist/lib/git.js +0 -37
- package/dist/lib/paths.d.ts +0 -108
- package/dist/lib/paths.js +0 -296
- package/dist/lib/prompts.d.ts +0 -18
- package/dist/lib/prompts.js +0 -62
- package/dist/types/prompt.d.ts +0 -54
- package/dist/types/prompt.js +0 -20
package/README.md
CHANGED
|
@@ -234,6 +234,18 @@ RAG is enabled by default in Express Setup. You can toggle it per-project in the
|
|
|
234
234
|
|
|
235
235
|
---
|
|
236
236
|
|
|
237
|
+
## 🛠 AI Agent Effectiveness & Code Health
|
|
238
|
+
|
|
239
|
+
We've optimized the codebase to be **highly navigatable for AI coding agents**:
|
|
240
|
+
|
|
241
|
+
### Codebase Optimization (v0.3.13)
|
|
242
|
+
- **Deduplication**: Consolidated install/uninstall logic and project sorting.
|
|
243
|
+
- **Function Extraction**: Split monolithic functions (like `index_knowledge`) into manageable helpers.
|
|
244
|
+
- **Improved Type Safety**: Replaced `any` types with structured interfaces (`TaskMeta`, `AgentInfo`).
|
|
245
|
+
- **AI Agent Guide**: Added [AI Agent Architecture Guide](docs/AI_AGENT_GUIDE.md) to help coding assistants navigate the project.
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
237
249
|
## Requirements
|
|
238
250
|
|
|
239
251
|
- **Node.js 18+**
|