@robbiesrobotics/alice-agents 1.4.4 → 1.4.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 +19 -3
- package/bin/alice-install.mjs +22 -1
- package/lib/agent-registry.mjs +33 -0
- package/lib/coding-agent.mjs +187 -0
- package/lib/config-merger.mjs +5 -1
- package/lib/doctor.mjs +123 -43
- package/lib/installer.mjs +83 -19
- package/lib/license.mjs +158 -14
- package/lib/manifest.mjs +18 -9
- package/lib/mission-control.mjs +31 -0
- package/lib/release-guard.mjs +131 -0
- package/lib/skills.mjs +0 -1
- package/lib/workspace-scaffolder.mjs +11 -16
- package/package.json +5 -3
- package/templates/agents-pro.json +550 -0
- package/templates/mission-control-bridge/index.ts +494 -32
- package/templates/workspaces/dylan/SOUL.md +1 -1
- package/templates/workspaces/dylan/TOOLS.md +4 -4
- package/templates/workspaces/felix/SOUL.md +1 -1
- package/templates/workspaces/felix/TOOLS.md +3 -3
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Domain: Full-Stack Software Engineering
|
|
4
4
|
|
|
5
|
-
## Primary Tool:
|
|
5
|
+
## Primary Tool: Coding Agent
|
|
6
6
|
|
|
7
|
-
**For any non-trivial multi-file coding task, use the `
|
|
7
|
+
**For any non-trivial multi-file coding task, use the `coding-agent` skill.**
|
|
8
8
|
|
|
9
|
-
Load it with: `read ~/.openclaw/skills/
|
|
9
|
+
Load it with: `read ~/.openclaw/skills/coding-agent/SKILL.md`
|
|
10
10
|
|
|
11
11
|
Pattern — foreground (tasks < 5min):
|
|
12
12
|
```
|
|
@@ -20,7 +20,7 @@ exec workdir=/path/to/project background=true command="claude --permission-mode
|
|
|
20
20
|
|
|
21
21
|
- Always set `workdir` to the project root
|
|
22
22
|
- Use `max` effort for complex multi-file refactors
|
|
23
|
-
- Review
|
|
23
|
+
- Review the coding agent's output before reporting to A.L.I.C.E.
|
|
24
24
|
|
|
25
25
|
## Other Tools
|
|
26
26
|
|
|
@@ -35,6 +35,6 @@ Detail-obsessed, craftsman energy. You care about the 4px misalignment that "pro
|
|
|
35
35
|
## Tools
|
|
36
36
|
|
|
37
37
|
- Use `exec` to run dev servers, build processes, and lint checks
|
|
38
|
-
- Use the `
|
|
38
|
+
- Use the `coding-agent` skill for multi-file component refactors and design system work
|
|
39
39
|
- Use `web_search` for MDN docs, browser compatibility, and framework-specific patterns
|
|
40
40
|
- Use `read` to audit component APIs and style tokens before building new ones
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
| Tool | When to use |
|
|
14
14
|
|------|-------------|
|
|
15
15
|
| `exec` | Run dev server, build, lint, typecheck, bundle analyzer |
|
|
16
|
-
| `
|
|
16
|
+
| `coding-agent` skill | Multi-file component refactors, design system overhauls |
|
|
17
17
|
| `read` | Audit component APIs, style tokens, and existing implementations |
|
|
18
18
|
| `web_search` | MDN docs, browser compatibility (caniuse), framework-specific patterns |
|
|
19
19
|
|
|
@@ -38,11 +38,11 @@ npm run build -- --analyze
|
|
|
38
38
|
npx axe-cli http://localhost:3000
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
## Load the
|
|
41
|
+
## Load the Coding Agent Skill
|
|
42
42
|
|
|
43
43
|
For multi-file refactors and design system work:
|
|
44
44
|
```
|
|
45
|
-
read ~/.openclaw/skills/
|
|
45
|
+
read ~/.openclaw/skills/coding-agent/SKILL.md
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
## Accessibility Checklist
|