@action-llama/skill 0.23.4 → 0.24.1
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/.claude-plugin/plugin.json +14 -0
- package/dist/build-docs.d.ts +32 -0
- package/dist/build-docs.d.ts.map +1 -0
- package/dist/build-docs.js +127 -0
- package/dist/build-docs.js.map +1 -0
- package/dist/index.d.ts +7 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -15
- package/dist/index.js.map +1 -1
- package/package.json +12 -6
- package/skills/al/SKILL.md +25 -0
- package/skills/al/agent-authoring.md +1436 -0
- package/skills/al/debugging.md +1075 -0
- package/skills/al/operations.md +1918 -0
- package/{content/commands/debug.md → skills/debug/SKILL.md} +12 -3
- package/{content/commands/iterate.md → skills/iterate/SKILL.md} +6 -0
- package/skills/new-agent/SKILL.md +36 -0
- package/{content/commands/run.md → skills/run/SKILL.md} +6 -0
- package/{content/commands/status.md → skills/status/SKILL.md} +5 -0
- package/content/AGENTS.md +0 -1128
- package/content/commands/new-agent.md +0 -24
- /package/{content/mcp.json → .mcp.json} +0 -0
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# Create a new agent
|
|
2
|
-
|
|
3
|
-
Create a new Action Llama agent named `$ARGUMENTS`.
|
|
4
|
-
|
|
5
|
-
## Steps
|
|
6
|
-
|
|
7
|
-
1. Ask the user for:
|
|
8
|
-
- **Trigger type**: `schedule` (cron), `webhook`, or both
|
|
9
|
-
- If schedule: a cron expression (e.g. `*/5 * * * *`)
|
|
10
|
-
- If webhook: the provider and event (e.g. `github` / `issues.opened`)
|
|
11
|
-
- **Credentials** needed (e.g. `github_token`, `slack_webhook`)
|
|
12
|
-
- A one-sentence description of what the agent should do
|
|
13
|
-
|
|
14
|
-
2. Use `al_agents` to list existing agents and avoid name conflicts.
|
|
15
|
-
|
|
16
|
-
3. Create `agents/$ARGUMENTS/SKILL.md` with:
|
|
17
|
-
- YAML frontmatter containing the trigger config and credentials
|
|
18
|
-
- Do NOT include `name` or `model` in the frontmatter — name is derived from the directory, model is inherited from project config
|
|
19
|
-
- A markdown body with clear instructions for the agent
|
|
20
|
-
- Reference AGENTS.md (symlinked at project root) for the full SKILL.md specification
|
|
21
|
-
|
|
22
|
-
4. Confirm the agent was created and suggest next steps:
|
|
23
|
-
- `al doctor` to verify credentials
|
|
24
|
-
- `/run` to test it
|
|
File without changes
|