agentloopkit 0.1.0 → 0.1.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/README.md +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,10 @@ Your coding agent can already write code. AgentLoopKit helps it work like a disc
|
|
|
6
6
|
|
|
7
7
|
Vibe coding produces code. Agentic engineering produces auditable work.
|
|
8
8
|
|
|
9
|
+
<p align="center">
|
|
10
|
+
<img src="https://raw.githubusercontent.com/abhiyoheswaran1/AgentLoopKit/main/docs/assets/readme/agentloopkit-showcase.png" alt="AgentLoopKit workflow showing task contracts, verification reports, and handoff artifacts" width="100%">
|
|
11
|
+
</p>
|
|
12
|
+
|
|
9
13
|
## What It Is
|
|
10
14
|
|
|
11
15
|
AgentLoopKit is a repo-level toolkit for developers using Codex, Claude Code, Cursor, OpenCode, Gemini CLI, GitHub Copilot CLI, and other coding agents.
|
|
@@ -51,6 +55,10 @@ npx agentloopkit install-agent codex
|
|
|
51
55
|
npx agentloopkit install-agent all
|
|
52
56
|
```
|
|
53
57
|
|
|
58
|
+
<p align="center">
|
|
59
|
+
<img src="https://raw.githubusercontent.com/abhiyoheswaran1/AgentLoopKit/main/docs/assets/readme/agentloopkit-cli.gif" alt="Terminal demo running AgentLoopKit init, doctor, create-task, and summarize" width="100%">
|
|
60
|
+
</p>
|
|
61
|
+
|
|
54
62
|
Pinned team usage:
|
|
55
63
|
|
|
56
64
|
```bash
|
|
@@ -159,6 +167,10 @@ Each contract records:
|
|
|
159
167
|
|
|
160
168
|
It does not hide failures. If no commands are configured, it writes a report saying nothing was verified.
|
|
161
169
|
|
|
170
|
+
<p align="center">
|
|
171
|
+
<img src="https://raw.githubusercontent.com/abhiyoheswaran1/AgentLoopKit/main/docs/assets/readme/agentloopkit-verification.png" alt="AgentLoopKit verification report screenshot showing command results and reviewer handoff sections" width="100%">
|
|
172
|
+
</p>
|
|
173
|
+
|
|
162
174
|
## PR Summaries
|
|
163
175
|
|
|
164
176
|
`agentloop summarize` uses deterministic inputs:
|
|
@@ -227,7 +239,9 @@ See `ROADMAP.md`.
|
|
|
227
239
|
|
|
228
240
|
## Publishing Status
|
|
229
241
|
|
|
230
|
-
|
|
242
|
+
AgentLoopKit is published on npm as `agentloopkit`.
|
|
243
|
+
|
|
244
|
+
The repository includes a GitHub Actions publish workflow for npm trusted publishing after the package is configured on npm. The workflow runs checks before `npm publish` and skips publish when the version already exists.
|
|
231
245
|
|
|
232
246
|
See `docs/launch-checklist.md` before publishing.
|
|
233
247
|
|