@yattalo/task-system 0.4.0 → 0.5.0

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.
Files changed (57) hide show
  1. package/README.md +48 -0
  2. package/dashboard-app/assets/spa-entry-CnIKatv4.js +24 -0
  3. package/dashboard-app/assets/styles-CAIFwsCh.css +1 -0
  4. package/dashboard-app/index.html +14 -0
  5. package/dist/commands/dashboard.d.ts +2 -0
  6. package/dist/commands/dashboard.d.ts.map +1 -1
  7. package/dist/commands/dashboard.js +133 -6
  8. package/dist/commands/dashboard.js.map +1 -1
  9. package/dist/commands/init.d.ts.map +1 -1
  10. package/dist/commands/init.js +35 -1
  11. package/dist/commands/init.js.map +1 -1
  12. package/dist/generators/mgrep-setup.d.ts +6 -0
  13. package/dist/generators/mgrep-setup.d.ts.map +1 -0
  14. package/dist/generators/mgrep-setup.js +191 -0
  15. package/dist/generators/mgrep-setup.js.map +1 -0
  16. package/dist/generators/mgrep-skill.d.ts +6 -0
  17. package/dist/generators/mgrep-skill.d.ts.map +1 -0
  18. package/dist/generators/mgrep-skill.js +173 -0
  19. package/dist/generators/mgrep-skill.js.map +1 -0
  20. package/dist/generators/uca-functions.d.ts +8 -0
  21. package/dist/generators/uca-functions.d.ts.map +1 -0
  22. package/dist/generators/uca-functions.js +57 -0
  23. package/dist/generators/uca-functions.js.map +1 -0
  24. package/dist/generators/uca-reexports.d.ts +8 -0
  25. package/dist/generators/uca-reexports.d.ts.map +1 -0
  26. package/dist/generators/uca-reexports.js +112 -0
  27. package/dist/generators/uca-reexports.js.map +1 -0
  28. package/dist/generators/uca-schema.d.ts +8 -0
  29. package/dist/generators/uca-schema.d.ts.map +1 -0
  30. package/dist/generators/uca-schema.js +650 -0
  31. package/dist/generators/uca-schema.js.map +1 -0
  32. package/dist/index.js +3 -1
  33. package/dist/index.js.map +1 -1
  34. package/dist/presets/research.d.ts.map +1 -1
  35. package/dist/presets/research.js +10 -0
  36. package/dist/presets/research.js.map +1 -1
  37. package/dist/presets/software.d.ts.map +1 -1
  38. package/dist/presets/software.js +10 -0
  39. package/dist/presets/software.js.map +1 -1
  40. package/dist/utils/detect.d.ts.map +1 -1
  41. package/dist/utils/detect.js +15 -0
  42. package/dist/utils/detect.js.map +1 -1
  43. package/dist/utils/merge.d.ts.map +1 -1
  44. package/dist/utils/merge.js +2 -0
  45. package/dist/utils/merge.js.map +1 -1
  46. package/package.json +5 -3
  47. package/templates/uca/agents.ts +59 -0
  48. package/templates/uca/contextEntries.ts +125 -0
  49. package/templates/uca/cronManager.ts +255 -0
  50. package/templates/uca/cronUtils.ts +99 -0
  51. package/templates/uca/driftEvents.ts +106 -0
  52. package/templates/uca/heartbeats.ts +167 -0
  53. package/templates/uca/hooks.ts +430 -0
  54. package/templates/uca/memory.ts +326 -0
  55. package/templates/uca/sessionBridge.ts +238 -0
  56. package/templates/uca/skills.ts +284 -0
  57. package/templates/uca/ucaTasks.ts +500 -0
package/README.md CHANGED
@@ -39,6 +39,9 @@ npx @yattalo/task-system init --preset software --dry-run
39
39
  | Agent-Ops | `convex/taskSystem/agentOps.ts` + scripts | Job scheduling (optional) |
40
40
  | Git Hook | `scripts/auto-task-tracker.js` | Auto-update tasks on commit |
41
41
  | Skill | `.claude/skills/task-orchestrator/SKILL.md` | Claude Code integration |
42
+ | UCA Core | 10 new files | Full UCA backend (agents, context, drift, hooks, memory, skills, etc.) |
43
+ | Dashboard SPA | `dashboard-app/` | React Kanban + context browser + drift timeline |
44
+ | mgrep | Setup + skill | Semantic multi-repo search integration |
42
45
 
43
46
  ## Commands
44
47
 
@@ -51,6 +54,51 @@ npx @yattalo/task-system init --preset software --dry-run
51
54
  | `dashboard` | Serve HTML dashboard in browser |
52
55
  | `report` | Generate markdown report |
53
56
 
57
+ ## Operational Commands (v0.4.0+)
58
+
59
+ UCA orchestration commands for managing context tiers, drift detection, and multi-agent coordination.
60
+
61
+ | Command | Subcommand | Description |
62
+ |---------|------------|-------------|
63
+ | `context` | `list [--tier draft\|reviewed\|curated]` | List context entries, optionally filtered by tier |
64
+ | `context` | `add --type <type> --content "..." --by <agent>` | Add a new context entry |
65
+ | `context` | `promote <entryId> --by <agent> --reason "..."` | Promote entry to next tier |
66
+ | `drift` | `list [--status open] [--severity high]` | List drift events with optional filters |
67
+ | `drift` | `create --agent <id> --type <type> --severity <level> --desc "..."` | Create a drift event |
68
+ | `drift` | `acknowledge <eventId> --by <agent>` | Acknowledge a drift event |
69
+ | `agent` | `list [--status active]` | List registered agents |
70
+ | `agent` | `status <agentId> --set <status>` | Update agent status |
71
+ | `day` | `[--agent <id>] [--date YYYY-MM-DD]` | Show daily summary for an agent |
72
+
73
+ ## What's New in v0.5.0
74
+
75
+ v0.5.0 transforms task-system from a task scaffold into a full **UCA (Unified Context Accelerator)** orchestration platform — complete backend, React dashboard, and multi-repo search.
76
+
77
+ ### UCA Backend Generation
78
+
79
+ The `init` command now generates a complete UCA backend with 10 new Convex modules:
80
+
81
+ | File | Purpose |
82
+ |------|---------|
83
+ | `convex/taskSystem/agents.ts` | Agent registry CRUD |
84
+ | `convex/taskSystem/contextEntries.ts` | Context tier management (draft → reviewed → curated) |
85
+ | `convex/taskSystem/driftEvents.ts` | Scope creep & drift detection |
86
+ | `convex/taskSystem/heartbeats.ts` | Agent heartbeat monitoring |
87
+ | `convex/taskSystem/hooks.ts` | Event hooks for task lifecycle |
88
+ | `convex/taskSystem/memory.ts` | Agent memory & learning persistence |
89
+ | `convex/taskSystem/sessionBridge.ts` | Inter-agent session handoff |
90
+ | `convex/taskSystem/skills.ts` | Skill registry for agents |
91
+ | `convex/taskSystem/cronManager.ts` | Cron job management |
92
+ | `convex/taskSystem/ucaTasks.ts` | Extended task operations |
93
+
94
+ ### Dashboard SPA
95
+
96
+ The `dashboard` command now serves a bundled **React SPA** with Kanban board, agent status panel, context browser, and drift timeline — replacing the simple HTML file from v0.4.0.
97
+
98
+ ### mgrep Integration
99
+
100
+ New `mgrep-setup` generator adds semantic multi-repo search via Mixedbread. Includes a Claude Code skill for cross-project code search.
101
+
54
102
  ## Presets
55
103
 
56
104
  ### Software