@action-llama/action-llama 0.13.5 → 0.13.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/README.md +5 -27
- package/agent-docs/AGENTS.md +125 -664
- package/dist/build-info.json +1 -1
- package/dist/cli/commands/push.d.ts +1 -0
- package/dist/cli/commands/push.d.ts.map +1 -1
- package/dist/cli/commands/push.js +6 -1
- package/dist/cli/commands/push.js.map +1 -1
- package/dist/cli/commands/start.d.ts.map +1 -1
- package/dist/cli/commands/start.js +7 -0
- package/dist/cli/commands/start.js.map +1 -1
- package/dist/cli/main.js +1 -0
- package/dist/cli/main.js.map +1 -1
- package/dist/gateway/index.d.ts.map +1 -1
- package/dist/gateway/index.js +6 -7
- package/dist/gateway/index.js.map +1 -1
- package/dist/gateway/routes/dashboard.d.ts +1 -1
- package/dist/gateway/routes/dashboard.d.ts.map +1 -1
- package/dist/gateway/routes/dashboard.js +4 -2
- package/dist/gateway/routes/dashboard.js.map +1 -1
- package/dist/remote/push.d.ts.map +1 -1
- package/dist/remote/push.js +39 -4
- package/dist/remote/push.js.map +1 -1
- package/dist/scheduler/gateway-setup.d.ts.map +1 -1
- package/dist/scheduler/gateway-setup.js +3 -0
- package/dist/scheduler/gateway-setup.js.map +1 -1
- package/dist/shared/credential-refs.d.ts +7 -0
- package/dist/shared/credential-refs.d.ts.map +1 -1
- package/dist/shared/credential-refs.js +16 -0
- package/dist/shared/credential-refs.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,34 +1,12 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
<img src="action_llama.jpg" alt="Action Llama" />
|
|
3
|
-
</p>
|
|
4
|
-
|
|
5
1
|
# Action Llama
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Dev Experience:
|
|
10
|
-
|
|
11
|
-
1. The agent is triggered by a webhook, agent, or cron schedule.
|
|
12
|
-
2. The agent runs according to the instructions in ACTIONS.md you define
|
|
13
|
-
3. The agent shuts down
|
|
14
|
-
|
|
15
|
-
Key features:
|
|
16
|
-
|
|
17
|
-
- Agent runs are contained in a Docker container using only the credentials they need. Credentials are stored separately.
|
|
18
|
-
- Define your agents in a git repo, add custom ones, and share them.
|
|
19
|
-
- BYOM: bring your own model (Anthropic, OpenAI, Groq, Google Gemini, xAI, Mistral, OpenRouter, or any custom provider).
|
|
20
|
-
|
|
21
|
-
Philosophy:
|
|
22
|
-
|
|
23
|
-
- AL is a thin wrapper around Claude or GPT. The models move so quickly, it's important to minimize the harness.
|
|
24
|
-
|
|
25
|
-
Use cases:
|
|
3
|
+
[](https://github.com/Action-Llama/action-llama/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@action-llama/action-llama)
|
|
26
5
|
|
|
27
|
-
|
|
28
|
-
- A reviewer agent that watches for new Github Pull Requests and reviews them then merges if all ok
|
|
29
|
-
- Deploy on a VPS (DigitalOcean, Vultr, Hetzner) for cost-effective remote hosting
|
|
6
|
+
Deploy agent workflows to the cloud.
|
|
30
7
|
|
|
31
|
-
|
|
8
|
+
- [**Documentation**](https://docs.actionllama.org)
|
|
9
|
+
- [**actionllama.org**](https://actionllama.org)
|
|
32
10
|
|
|
33
11
|
Built on [pi.dev](https://github.com/badlogic/pi-mono) as the agent harness.
|
|
34
12
|
|