@action-llama/action-llama 0.23.4 → 0.23.7
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/dist/build-info.json +1 -1
- package/dist/setup/scaffold.d.ts +1 -1
- package/dist/setup/scaffold.d.ts.map +1 -1
- package/dist/setup/scaffold.js +19 -156
- package/dist/setup/scaffold.js.map +1 -1
- package/package.json +2 -2
- package/agent-docs/AGENTS.md +0 -1128
package/dist/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"gitSha":"
|
|
1
|
+
{"gitSha":"1b9ac20e"}
|
package/dist/setup/scaffold.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare const CLAUDE_COMMANDS: Record<string, string>;
|
|
2
1
|
/**
|
|
3
2
|
* Scaffold Claude Code slash commands into .claude/commands/.
|
|
3
|
+
* Copies command files from @action-llama/skill content.
|
|
4
4
|
* Skips files that already exist to avoid overwriting user customizations.
|
|
5
5
|
*/
|
|
6
6
|
export declare function scaffoldClaudeCommands(projectPath: string): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scaffold.d.ts","sourceRoot":"","sources":["../../src/setup/scaffold.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"scaffold.d.ts","sourceRoot":"","sources":["../../src/setup/scaffold.ts"],"names":[],"mappings":"AAKA;;;;GAIG;AACH,wBAAgB,sBAAsB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAUhE;AAID,OAAO,KAAK,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAGvF,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC;AAEvD;;;;GAIG;AACH,wBAAgB,kBAAkB,IAAI,MAAM,CAG3C;AAOD,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,WAAW,CAAC;CACrB;AAED,wBAAgB,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,aAAa,GAAG,IAAI,CA2B7E;AAED,wBAAgB,eAAe,CAC7B,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,YAAY,EAC1B,MAAM,GAAE,aAAa,EAAO,EAC5B,WAAW,CAAC,EAAE,MAAM,GACnB,IAAI,CAgGN"}
|
package/dist/setup/scaffold.js
CHANGED
|
@@ -1,148 +1,21 @@
|
|
|
1
|
-
import { mkdirSync, writeFileSync, existsSync, readFileSync, copyFileSync, symlinkSync, lstatSync, realpathSync } from "fs";
|
|
1
|
+
import { mkdirSync, writeFileSync, existsSync, readFileSync, copyFileSync, symlinkSync, lstatSync, realpathSync, readdirSync } from "fs";
|
|
2
2
|
import { execSync } from "child_process";
|
|
3
3
|
import { resolve, relative } from "path";
|
|
4
|
-
|
|
5
|
-
// Claude Code slash-command templates (.claude/commands/*.md)
|
|
6
|
-
// ---------------------------------------------------------------------------
|
|
7
|
-
export const CLAUDE_COMMANDS = {
|
|
8
|
-
"new-agent": `# Create a new agent
|
|
9
|
-
|
|
10
|
-
Create a new Action Llama agent named \`$ARGUMENTS\`.
|
|
11
|
-
|
|
12
|
-
## Steps
|
|
13
|
-
|
|
14
|
-
1. Ask the user for:
|
|
15
|
-
- **Trigger type**: \`schedule\` (cron), \`webhook\`, or both
|
|
16
|
-
- If schedule: a cron expression (e.g. \`*/5 * * * *\`)
|
|
17
|
-
- If webhook: the provider and event (e.g. \`github\` / \`issues.opened\`)
|
|
18
|
-
- **Credentials** needed (e.g. \`github_token\`, \`slack_webhook\`)
|
|
19
|
-
- A one-sentence description of what the agent should do
|
|
20
|
-
|
|
21
|
-
2. Use \`al_agents\` to list existing agents and avoid name conflicts.
|
|
22
|
-
|
|
23
|
-
3. Create \`agents/$ARGUMENTS/SKILL.md\` with:
|
|
24
|
-
- YAML frontmatter containing the trigger config and credentials
|
|
25
|
-
- Do NOT include \`name\` or \`model\` in the frontmatter — name is derived from the directory, model is inherited from project config
|
|
26
|
-
- A markdown body with clear instructions for the agent
|
|
27
|
-
- Reference AGENTS.md (symlinked at project root) for the full SKILL.md specification
|
|
28
|
-
|
|
29
|
-
4. Confirm the agent was created and suggest next steps:
|
|
30
|
-
- \`al doctor\` to verify credentials
|
|
31
|
-
- \`/run\` to test it
|
|
32
|
-
`,
|
|
33
|
-
"run": `# Run an agent
|
|
34
|
-
|
|
35
|
-
Trigger an agent run and report the results.
|
|
36
|
-
|
|
37
|
-
## Steps
|
|
38
|
-
|
|
39
|
-
1. Call \`al_status\` to check if the scheduler is running.
|
|
40
|
-
- If not running, call \`al_start\` to start it and wait for it to become ready.
|
|
41
|
-
|
|
42
|
-
2. Ask the user which agent to run (or use \`$ARGUMENTS\` if provided).
|
|
43
|
-
- If unclear, call \`al_agents\` to list available agents.
|
|
44
|
-
|
|
45
|
-
3. Call \`al_run\` with the agent name.
|
|
46
|
-
|
|
47
|
-
4. Wait a few seconds, then call \`al_logs\` with the agent name, \`lines: 200\`, to fetch the run output.
|
|
48
|
-
- If the run is still in progress, wait and poll logs again.
|
|
49
|
-
|
|
50
|
-
5. Summarize the result:
|
|
51
|
-
- What the agent did (key actions, commits, API calls)
|
|
52
|
-
- Whether it succeeded or failed
|
|
53
|
-
- Any warnings or errors
|
|
54
|
-
`,
|
|
55
|
-
"debug": `# Debug a failing agent
|
|
56
|
-
|
|
57
|
-
Diagnose why an agent is failing and suggest fixes.
|
|
58
|
-
|
|
59
|
-
## Steps
|
|
60
|
-
|
|
61
|
-
1. Identify the agent to debug (use \`$ARGUMENTS\` if provided, otherwise ask).
|
|
62
|
-
|
|
63
|
-
2. Call \`al_logs\` with the agent name, \`level: "warn"\`, \`lines: 500\` to pull recent warnings and errors.
|
|
64
|
-
|
|
65
|
-
3. Call \`al_agents\` with the agent name to read its full config and SKILL.md body.
|
|
66
|
-
|
|
67
|
-
4. Analyze the logs and agent configuration to identify the root cause. Common issues:
|
|
68
|
-
- Missing or expired credentials
|
|
69
|
-
- Malformed SKILL.md frontmatter
|
|
70
|
-
- Instructions that lead to tool errors
|
|
71
|
-
- Rate limiting or API failures
|
|
72
|
-
- Docker/container issues
|
|
73
|
-
|
|
74
|
-
5. Present a diagnosis with:
|
|
75
|
-
- **Root cause**: What's going wrong and why
|
|
76
|
-
- **Evidence**: Relevant log lines
|
|
77
|
-
- **Fix**: Concrete changes to make (SKILL.md edits, credential updates, config changes)
|
|
78
|
-
|
|
79
|
-
6. Offer to apply the fix directly.
|
|
80
|
-
`,
|
|
81
|
-
"iterate": `# Iterate on an agent
|
|
82
|
-
|
|
83
|
-
Run an agent, analyze its output, and improve its instructions. Repeats up to 3 cycles or until the agent runs cleanly.
|
|
84
|
-
|
|
85
|
-
## Rules
|
|
86
|
-
|
|
87
|
-
- Only modify the markdown body (instructions) of SKILL.md, not the YAML frontmatter, unless you ask the user first.
|
|
88
|
-
- Stop iterating when the agent completes without errors or after 3 cycles.
|
|
89
|
-
|
|
90
|
-
## Steps (per cycle)
|
|
91
|
-
|
|
92
|
-
1. Call \`al_status\` to ensure the scheduler is running. Start it with \`al_start\` if needed.
|
|
93
|
-
|
|
94
|
-
2. Call \`al_run\` with the agent name (use \`$ARGUMENTS\` if provided).
|
|
95
|
-
|
|
96
|
-
3. Wait for the run to complete, then call \`al_logs\` with \`lines: 300\` to get the full output.
|
|
97
|
-
|
|
98
|
-
4. Analyze the result:
|
|
99
|
-
- Did the agent complete its task successfully?
|
|
100
|
-
- Were there errors, unnecessary steps, or suboptimal behavior?
|
|
101
|
-
|
|
102
|
-
5. If improvements are needed:
|
|
103
|
-
- Read the current SKILL.md file
|
|
104
|
-
- Edit the instruction body to address the issues found
|
|
105
|
-
- Explain what you changed and why
|
|
106
|
-
- Start the next cycle
|
|
107
|
-
|
|
108
|
-
6. If the run was clean, report success and summarize what was changed across all cycles.
|
|
109
|
-
`,
|
|
110
|
-
"status": `# Status overview
|
|
111
|
-
|
|
112
|
-
Show a rich overview of the Action Llama project status.
|
|
113
|
-
|
|
114
|
-
## Steps
|
|
115
|
-
|
|
116
|
-
1. Call \`al_status\` and \`al_agents\` in parallel to gather scheduler state and agent details.
|
|
117
|
-
|
|
118
|
-
2. Present a formatted overview:
|
|
119
|
-
|
|
120
|
-
**Scheduler**: running/stopped, uptime, gateway URL
|
|
121
|
-
|
|
122
|
-
**Agents**:
|
|
123
|
-
| Agent | State | Trigger | Last Run | Next Run |
|
|
124
|
-
|-------|-------|---------|----------|----------|
|
|
125
|
-
| ... | ... | ... | ... | ... |
|
|
126
|
-
|
|
127
|
-
Include schedule expressions, webhook configs, and credential status for each agent.
|
|
128
|
-
|
|
129
|
-
3. Add actionable suggestions if relevant:
|
|
130
|
-
- Agents that are paused or erroring
|
|
131
|
-
- Agents that haven't run recently
|
|
132
|
-
- Missing credentials flagged by \`al_agents\`
|
|
133
|
-
`,
|
|
134
|
-
};
|
|
4
|
+
import { agentsMdPath, commandsDir, mcpJsonPath as skillMcpJsonPath } from "@action-llama/skill";
|
|
135
5
|
/**
|
|
136
6
|
* Scaffold Claude Code slash commands into .claude/commands/.
|
|
7
|
+
* Copies command files from @action-llama/skill content.
|
|
137
8
|
* Skips files that already exist to avoid overwriting user customizations.
|
|
138
9
|
*/
|
|
139
10
|
export function scaffoldClaudeCommands(projectPath) {
|
|
140
|
-
const
|
|
141
|
-
mkdirSync(
|
|
142
|
-
for (const
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
11
|
+
const destDir = resolve(projectPath, ".claude", "commands");
|
|
12
|
+
mkdirSync(destDir, { recursive: true });
|
|
13
|
+
for (const entry of readdirSync(commandsDir)) {
|
|
14
|
+
if (!entry.endsWith(".md"))
|
|
15
|
+
continue;
|
|
16
|
+
const dest = resolve(destDir, entry);
|
|
17
|
+
if (!existsSync(dest)) {
|
|
18
|
+
copyFileSync(resolve(commandsDir, entry), dest);
|
|
146
19
|
}
|
|
147
20
|
}
|
|
148
21
|
}
|
|
@@ -161,9 +34,6 @@ export function resolvePackageRoot() {
|
|
|
161
34
|
const thisFile = fileURLToPath(import.meta.url);
|
|
162
35
|
return resolve(thisFile, "..", "..", "..");
|
|
163
36
|
}
|
|
164
|
-
function resolveAgentReferenceMd() {
|
|
165
|
-
return resolve(resolvePackageRoot(), "agent-docs", "AGENTS.md");
|
|
166
|
-
}
|
|
167
37
|
/** Check if a path exists as a symlink (even dangling). Returns false if nothing exists. */
|
|
168
38
|
function lstatSafe(path) {
|
|
169
39
|
try {
|
|
@@ -223,6 +93,7 @@ export function scaffoldProject(projectPath, globalConfig, agents = [], projectN
|
|
|
223
93
|
type: "module",
|
|
224
94
|
dependencies: {
|
|
225
95
|
"@action-llama/action-llama": VERSION,
|
|
96
|
+
"@action-llama/skill": VERSION,
|
|
226
97
|
},
|
|
227
98
|
};
|
|
228
99
|
writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + "\n");
|
|
@@ -235,18 +106,17 @@ export function scaffoldProject(projectPath, globalConfig, agents = [], projectN
|
|
|
235
106
|
for (const agent of agents) {
|
|
236
107
|
scaffoldAgent(projectPath, agent);
|
|
237
108
|
}
|
|
238
|
-
// Symlink AGENTS.md and CLAUDE.md to
|
|
109
|
+
// Symlink AGENTS.md and CLAUDE.md to @action-llama/skill's content/AGENTS.md.
|
|
239
110
|
// Uses a relative symlink so it works if the project moves.
|
|
240
111
|
// Falls back to a regular copy if symlinks fail (e.g. Windows without Developer Mode)
|
|
241
112
|
// or if the target doesn't exist (e.g. running from source before npm install).
|
|
242
|
-
const
|
|
243
|
-
const agentRefExists = existsSync(agentRefMd);
|
|
113
|
+
const agentRefExists = existsSync(agentsMdPath);
|
|
244
114
|
for (const name of ["AGENTS.md", "CLAUDE.md"]) {
|
|
245
115
|
const dest = resolve(projectPath, name);
|
|
246
116
|
if (!existsSync(dest) && !lstatSafe(dest)) {
|
|
247
117
|
if (agentRefExists) {
|
|
248
118
|
try {
|
|
249
|
-
const relTarget = relative(realpathSync(projectPath),
|
|
119
|
+
const relTarget = relative(realpathSync(projectPath), agentsMdPath);
|
|
250
120
|
symlinkSync(relTarget, dest);
|
|
251
121
|
continue;
|
|
252
122
|
}
|
|
@@ -255,7 +125,7 @@ export function scaffoldProject(projectPath, globalConfig, agents = [], projectN
|
|
|
255
125
|
}
|
|
256
126
|
}
|
|
257
127
|
try {
|
|
258
|
-
copyFileSync(
|
|
128
|
+
copyFileSync(agentsMdPath, dest);
|
|
259
129
|
}
|
|
260
130
|
catch {
|
|
261
131
|
// Skip if package can't be resolved
|
|
@@ -283,16 +153,9 @@ export function scaffoldProject(projectPath, globalConfig, agents = [], projectN
|
|
|
283
153
|
].join("\n"));
|
|
284
154
|
}
|
|
285
155
|
// Create .mcp.json for Claude Code MCP integration
|
|
286
|
-
const
|
|
287
|
-
if (!existsSync(
|
|
288
|
-
|
|
289
|
-
mcpServers: {
|
|
290
|
-
"action-llama": {
|
|
291
|
-
command: "al",
|
|
292
|
-
args: ["mcp", "serve"],
|
|
293
|
-
},
|
|
294
|
-
},
|
|
295
|
-
}, null, 2) + "\n");
|
|
156
|
+
const mcpJsonDest = resolve(projectPath, ".mcp.json");
|
|
157
|
+
if (!existsSync(mcpJsonDest)) {
|
|
158
|
+
copyFileSync(skillMcpJsonPath, mcpJsonDest);
|
|
296
159
|
}
|
|
297
160
|
// Scaffold Claude Code slash commands
|
|
298
161
|
scaffoldClaudeCommands(projectPath);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scaffold.js","sourceRoot":"","sources":["../../src/setup/scaffold.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,UAAU,EAAE,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"scaffold.js","sourceRoot":"","sources":["../../src/setup/scaffold.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@action-llama/action-llama",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.7",
|
|
4
4
|
"description": "Automated development agents triggered by cron or webhooks. BYOM — bring your own model.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
"dist",
|
|
41
41
|
"drizzle",
|
|
42
42
|
"docker",
|
|
43
|
-
"agent-docs",
|
|
44
43
|
"README.md",
|
|
45
44
|
"LICENSE"
|
|
46
45
|
],
|
|
@@ -54,6 +53,7 @@
|
|
|
54
53
|
"test:playwright": "npx playwright test --config playwright.config.ts"
|
|
55
54
|
},
|
|
56
55
|
"dependencies": {
|
|
56
|
+
"@action-llama/skill": "*",
|
|
57
57
|
"@hono/node-server": "^1.19.11",
|
|
58
58
|
"@inquirer/prompts": "^7",
|
|
59
59
|
"@mariozechner/pi-ai": "^0.56.1",
|