Document the Allium loop — gather context → take action → verify → repeat#53
Merged
Conversation
Frame Allium's skills as an agentic loop — gather context → take action → verify → repeat — and position the spec+tests+weed signal as the verification phase that makes a self-driving loop trustworthy. - New reference skills/allium/references/recommended-loops.md with the loop framing, the convergence invariant (whole-loop, two feedback arcs), spec-first (Loop A) and code-first (Loop B) walkthroughs, the red-step before implementation, autonomous-run guardrails, and the implement prompt. - README: prominent "The Allium loop" section after "How it works". - allium router SKILL.md: recommended-sequencing note so the LLM suggests the next phase, plus the reference in the References list. - Bump both plugin manifests 3.5.0 -> 3.6.0 (minor: additive docs/guidance). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
yavorpanayotov
added a commit
to juxt/claude-plugins
that referenced
this pull request
Jun 23, 2026
Pin scripts/allium-ref.txt to v3.6.0 and re-vendor plugins/allium via scripts/sync-allium.sh. Ships the Allium loop documentation (juxt/allium#53) to the marketplace. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allium, reframed as loop engineering
Boris Cherny (Anthropic, Head of Claude Code) has been blunt about where agentic coding is going: "I don't prompt Claude anymore. I have loops running that prompt Claude… My job is to write loops." And the single biggest quality lever in those loops is verification — he reckons a good verification feedback loop "2–3x's" the result.
That's exactly the gap Allium fills. This PR makes that explicit: it frames the five skills as the agentic loop — gather context → take action → verify → repeat — and positions Allium as the thing that makes the loop trustworthy: a behavioural verification signal, plus context that doesn't drift between sessions.
Why Allium is shaped for this:
/propagateprojects the spec into tests, then you implement; for new behaviour, confirm tests fail first (red), so you're not writing already-covered or vacuous tests./weedalignment → CLI structural checks: a behavioural pass/fail, not just "unit tests green."/tend), not only the code — an inner arc (code→contract) and an outer arc (contract→intent), mirroring how real development discovers requirements by building.What's in here
skills/allium/references/recommended-loops.md— full walkthrough: the four-phase framing, the convergence invariant (two feedback arcs), Loop A (spec-first) and Loop B (code-first) diagrams, the red-step-before-implementation, autonomous-run guardrails (never weaken a test; escalate ambiguity), and the implementation prompt.## The Allium loopsection right after "How it works" (concept-forward, with background links)./alliumrouter — a recommended-sequencing note so the assistant proactively suggests the next phase, and the reference added to the References list.3.5.0 → 3.6.0(minor; additive docs/guidance).Validation
node scripts/test-skills.mjs→ 54 passed, 0 failed (structure, links, routing, generation all green).generate-multi-editor.mjs --checkclean.Background: How Claude Code works · The New Stack — Loop Engineering · The Neuron — Claude Code creators on agent loops
🤖 Generated with Claude Code