liteagents 2.5.2 → 2.6.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.
- package/CHANGELOG.md +76 -15
- package/README.md +58 -30
- package/docs/INSTALLATION_DEMO.md +1 -1
- package/docs/INSTALLATION_LOCATIONS.md +5 -5
- package/docs/INSTALLER_GUIDE.md +5 -5
- package/docs/KNOWLEDGE_BASE.md +5 -5
- package/docs/MIGRATION.md +1 -1
- package/docs/PASS_QUICK_START.md +1 -1
- package/docs/PRIVACY.md +1 -1
- package/docs/PUBLISHING.md +7 -7
- package/docs/RELEASE_NOTES_1.2.0.md +2 -2
- package/docs/SILENT_MODE_GUIDE.md +1 -1
- package/installer/cli.js +1 -1
- package/installer/installation-engine.js +82 -21
- package/installer/package-manager.js +34 -3
- package/package.json +7 -6
- package/packages/ampcode/AGENT.md +1 -0
- package/packages/ampcode/commands/friction/friction.js +19 -4
- package/packages/ampcode/commands/live-canvas/DESIGN_PRINCIPLES.md +2140 -0
- package/packages/ampcode/commands/live-canvas/README.md +273 -0
- package/packages/ampcode/commands/live-canvas/templates/.claude/settings.local.json +8 -0
- package/packages/ampcode/commands/live-canvas/templates/demo/post-variants.html +205 -0
- package/packages/ampcode/commands/live-canvas/templates/feedback-react/FeedbackOverlay.tsx +1299 -0
- package/packages/ampcode/commands/live-canvas/templates/feedback-react/format-utils.ts +283 -0
- package/packages/ampcode/commands/live-canvas/templates/feedback-react/index.ts +62 -0
- package/packages/ampcode/commands/live-canvas/templates/feedback-react/selector-utils.ts +423 -0
- package/packages/ampcode/commands/live-canvas/templates/feedback-react/types.ts +118 -0
- package/packages/ampcode/commands/live-canvas/templates/overlay-vanilla.js +477 -0
- package/packages/ampcode/commands/live-canvas.md +1104 -0
- package/packages/claude/CLAUDE.md +1 -0
- package/packages/claude/commands/friction/friction.js +19 -4
- package/packages/claude/plugins/live-canvas-marketplace/.claude-plugin/marketplace.json +14 -0
- package/packages/claude/plugins/live-canvas-marketplace/plugins/live-canvas-channel/.claude-plugin/plugin.json +18 -0
- package/packages/claude/plugins/live-canvas-marketplace/plugins/live-canvas-channel/README.md +89 -0
- package/packages/claude/plugins/live-canvas-marketplace/plugins/live-canvas-channel/package-lock.json +1142 -0
- package/packages/claude/plugins/live-canvas-marketplace/plugins/live-canvas-channel/package.json +17 -0
- package/packages/claude/plugins/live-canvas-marketplace/plugins/live-canvas-channel/schema.json +37 -0
- package/packages/claude/plugins/live-canvas-marketplace/plugins/live-canvas-channel/server.js +179 -0
- package/packages/claude/plugins/live-canvas-marketplace/setup.sh +61 -0
- package/packages/claude/skills/live-canvas/DESIGN_PRINCIPLES.md +2140 -0
- package/packages/claude/skills/live-canvas/INTEGRATION_NOTES.md +210 -0
- package/packages/claude/skills/live-canvas/README.md +273 -0
- package/packages/claude/skills/live-canvas/SKILL.md +1119 -0
- package/packages/claude/skills/live-canvas/templates/.claude/settings.local.json +8 -0
- package/packages/claude/skills/live-canvas/templates/demo/post-variants.html +205 -0
- package/packages/claude/skills/live-canvas/templates/feedback-react/FeedbackOverlay.tsx +1299 -0
- package/packages/claude/skills/live-canvas/templates/feedback-react/format-utils.ts +283 -0
- package/packages/claude/skills/live-canvas/templates/feedback-react/index.ts +62 -0
- package/packages/claude/skills/live-canvas/templates/feedback-react/selector-utils.ts +423 -0
- package/packages/claude/skills/live-canvas/templates/feedback-react/types.ts +118 -0
- package/packages/claude/skills/live-canvas/templates/overlay-vanilla.js +477 -0
- package/packages/claude/variants.json +2 -1
- package/packages/droid/AGENTS.md +1 -0
- package/packages/droid/commands/friction/friction.js +19 -4
- package/packages/droid/commands/live-canvas/DESIGN_PRINCIPLES.md +2140 -0
- package/packages/droid/commands/live-canvas/README.md +273 -0
- package/packages/droid/commands/live-canvas/templates/.claude/settings.local.json +8 -0
- package/packages/droid/commands/live-canvas/templates/demo/post-variants.html +205 -0
- package/packages/droid/commands/live-canvas/templates/feedback-react/FeedbackOverlay.tsx +1299 -0
- package/packages/droid/commands/live-canvas/templates/feedback-react/format-utils.ts +283 -0
- package/packages/droid/commands/live-canvas/templates/feedback-react/index.ts +62 -0
- package/packages/droid/commands/live-canvas/templates/feedback-react/selector-utils.ts +423 -0
- package/packages/droid/commands/live-canvas/templates/feedback-react/types.ts +118 -0
- package/packages/droid/commands/live-canvas/templates/overlay-vanilla.js +477 -0
- package/packages/droid/commands/live-canvas.md +1104 -0
- package/packages/opencode/AGENTS.md +1 -0
- package/packages/opencode/command/friction/friction.js +19 -4
- package/packages/opencode/command/live-canvas/DESIGN_PRINCIPLES.md +2140 -0
- package/packages/opencode/command/live-canvas/README.md +273 -0
- package/packages/opencode/command/live-canvas/templates/.claude/settings.local.json +8 -0
- package/packages/opencode/command/live-canvas/templates/demo/post-variants.html +205 -0
- package/packages/opencode/command/live-canvas/templates/feedback-react/FeedbackOverlay.tsx +1299 -0
- package/packages/opencode/command/live-canvas/templates/feedback-react/format-utils.ts +283 -0
- package/packages/opencode/command/live-canvas/templates/feedback-react/index.ts +62 -0
- package/packages/opencode/command/live-canvas/templates/feedback-react/selector-utils.ts +423 -0
- package/packages/opencode/command/live-canvas/templates/feedback-react/types.ts +118 -0
- package/packages/opencode/command/live-canvas/templates/overlay-vanilla.js +477 -0
- package/packages/opencode/command/live-canvas.md +1104 -0
- package/packages/opencode/opencode.jsonc +4 -0
- package/packages/subagentic-manual.md +18 -15
|
@@ -165,6 +165,10 @@
|
|
|
165
165
|
"template": "{file:./command/git-commit.md}",
|
|
166
166
|
"description": "Analyze changes and create intelligent git commits"
|
|
167
167
|
},
|
|
168
|
+
"live-canvas": {
|
|
169
|
+
"template": "{file:./command/live-canvas.md}",
|
|
170
|
+
"description": "Design UI variations and collect click-to-annotate feedback from the browser (batch mode only on Opencode)"
|
|
171
|
+
},
|
|
168
172
|
"optimize": {
|
|
169
173
|
"template": "{file:./command/optimize.md}",
|
|
170
174
|
"description": "Analyze and optimize performance issues"
|
|
@@ -23,7 +23,7 @@ Production-ready AI agent framework providing specialized subagents, workflow co
|
|
|
23
23
|
|
|
24
24
|
Clone the toolkit:
|
|
25
25
|
```bash
|
|
26
|
-
git clone https://github.com/
|
|
26
|
+
git clone https://github.com/hamr0/agentic-toolkit
|
|
27
27
|
cd agentic-toolkit/ai/subagentic
|
|
28
28
|
```
|
|
29
29
|
|
|
@@ -31,10 +31,10 @@ Install for your platform:
|
|
|
31
31
|
|
|
32
32
|
| Platform | Installation | What's Included |
|
|
33
33
|
|----------|--------------|-----------------|
|
|
34
|
-
| **Claude Code** | `cp -r claude/* ~/.claude/` | 11 subagents +
|
|
35
|
-
| **Droid** | `cp -r droid/* ~/.factory/` |
|
|
36
|
-
| **Ampcode** | `cp -r ampcode/* ~/.config/amp/` | 11 subagents +
|
|
37
|
-
| **OpenCode** | `cp -r opencode/* ~/.config/opencode/` |
|
|
34
|
+
| **Claude Code** | `cp -r claude/* ~/.claude/` | 11 subagents + 11 skills + 12 commands + live-canvas-channel plugin |
|
|
35
|
+
| **Droid** | `cp -r droid/* ~/.factory/` | 23 commands (subagent references) |
|
|
36
|
+
| **Ampcode** | `cp -r ampcode/* ~/.config/amp/` | 11 subagents + 11 skills + 12 commands |
|
|
37
|
+
| **OpenCode** | `cp -r opencode/* ~/.config/opencode/` | 23 commands (subagent references) |
|
|
38
38
|
|
|
39
39
|
**Key Difference**:
|
|
40
40
|
- **Claude Code / Ampcode** implement full subagent system with orchestrator
|
|
@@ -50,9 +50,9 @@ Install for your platform:
|
|
|
50
50
|
- 3 Workflow Agents (PRD, Tasks, Implementation)
|
|
51
51
|
- 8 Specialist Agents (UX, QA, Architecture, Product, Development, etc.)
|
|
52
52
|
|
|
53
|
-
**
|
|
53
|
+
**11 Skills** - Auto-triggering + manual workflow components
|
|
54
54
|
- test-driven-development, testing-anti-patterns, verification-before-completion (auto-trigger)
|
|
55
|
-
- brainstorming, code-review, systematic-debugging, docs-builder, etc.
|
|
55
|
+
- brainstorming, code-review, systematic-debugging, docs-builder, live-canvas, etc.
|
|
56
56
|
|
|
57
57
|
**12 Commands** - Simple workflow helpers
|
|
58
58
|
- debug, explain, friction, git-commit, optimize, refactor, remember, review, security, ship, stash, test-generate
|
|
@@ -64,7 +64,7 @@ Install for your platform:
|
|
|
64
64
|
|
|
65
65
|
### Droid/OpenCode (Commands Only)
|
|
66
66
|
|
|
67
|
-
**
|
|
67
|
+
**23 Commands** - All workflow capabilities in command form
|
|
68
68
|
- Combines skills + commands into unified command set
|
|
69
69
|
- Same functionality, different invocation model (no auto-triggering)
|
|
70
70
|
- Includes reference documentation for subagents
|
|
@@ -102,18 +102,19 @@ Install for your platform:
|
|
|
102
102
|
|
|
103
103
|
## Commands Reference
|
|
104
104
|
|
|
105
|
-
### Claude Code / Ampcode:
|
|
105
|
+
### Claude Code / Ampcode: 23 Total (11 Skills + 12 Commands)
|
|
106
106
|
|
|
107
107
|
**Auto-Triggering Skills (3)**
|
|
108
108
|
- `test-driven-development` - Write test first, watch fail, minimal passing code
|
|
109
109
|
- `testing-anti-patterns` - Prevent mocking anti-patterns and test pollution
|
|
110
110
|
- `verification-before-completion` - Run verification before claiming done
|
|
111
111
|
|
|
112
|
-
**Manual Skills (
|
|
112
|
+
**Manual Skills (8)**
|
|
113
113
|
- `brainstorming` - Refine rough ideas through collaborative questioning
|
|
114
114
|
- `code-review` - Review implementation against requirements
|
|
115
115
|
- `condition-based-waiting` - Replace timeouts with condition polling
|
|
116
116
|
- `docs-builder` - Create structured /docs hierarchy
|
|
117
|
+
- `live-canvas` - Design UI variations with click-to-annotate browser feedback. **Claude Code ships a companion MCP channel plugin (`live-canvas-channel`) that enables live mode — each overlay Save streams into the session in real time.** Other tools run in batch mode only. One-time setup required: see `packages/claude/skills/live-canvas/README.md`.
|
|
117
118
|
- `root-cause-tracing` - Trace bugs backward through call stack
|
|
118
119
|
- `skill-creator` - Guide for creating new skills
|
|
119
120
|
- `systematic-debugging` - Four-phase debugging framework
|
|
@@ -132,17 +133,19 @@ Install for your platform:
|
|
|
132
133
|
- `stash` - Save session context for compaction recovery or handoffs
|
|
133
134
|
- `test-generate` - Test suite generation
|
|
134
135
|
|
|
135
|
-
### Droid/OpenCode:
|
|
136
|
+
### Droid/OpenCode: 23 Commands
|
|
136
137
|
|
|
137
138
|
Same functionality as skills+commands, but:
|
|
138
139
|
- All invoked as commands (no auto-triggering)
|
|
139
140
|
- Unified command set
|
|
140
141
|
- No orchestrator integration
|
|
142
|
+
- `live-canvas` runs in batch mode only (no channel plugin — that's Claude Code specific)
|
|
141
143
|
|
|
142
144
|
**Command Categories**:
|
|
143
145
|
- **Development & Testing (9)**: test-driven-development, testing-anti-patterns, test-generate, code-review, systematic-debugging, root-cause-tracing, debug, condition-based-waiting, verification-before-completion
|
|
144
146
|
- **Code Operations (6)**: refactor, optimize, explain, review, security, ship
|
|
145
147
|
- **Session & Memory (7)**: brainstorming, skill-creator, docs-builder, git-commit, stash, friction, remember
|
|
148
|
+
- **Design (1)**: live-canvas
|
|
146
149
|
|
|
147
150
|
---
|
|
148
151
|
|
|
@@ -282,7 +285,7 @@ Subagent workflows require manual coordination.
|
|
|
282
285
|
```
|
|
283
286
|
~/.factory/
|
|
284
287
|
├── AGENTS.md # Reference doc (subagents + commands)
|
|
285
|
-
└── commands/ #
|
|
288
|
+
└── commands/ # 23 commands (*.md)
|
|
286
289
|
```
|
|
287
290
|
|
|
288
291
|
**Features**:
|
|
@@ -294,7 +297,7 @@ Subagent workflows require manual coordination.
|
|
|
294
297
|
```
|
|
295
298
|
~/.config/opencode/
|
|
296
299
|
├── AGENTS.md # Reference doc (subagents + commands)
|
|
297
|
-
└── command/ #
|
|
300
|
+
└── command/ # 23 commands (*.md)
|
|
298
301
|
```
|
|
299
302
|
|
|
300
303
|
**Features**:
|
|
@@ -363,5 +366,5 @@ See repository for contribution guidelines.
|
|
|
363
366
|
---
|
|
364
367
|
|
|
365
368
|
**License**: [Specify license]
|
|
366
|
-
**Repository**: https://github.com/
|
|
367
|
-
**Issues**: https://github.com/
|
|
369
|
+
**Repository**: https://github.com/hamr0/agentic-toolkit
|
|
370
|
+
**Issues**: https://github.com/hamr0/agentic-toolkit/issues
|