Sync clarion-setup: leaner install + free-tier reasoning default#89
Merged
jingerzz merged 1 commit intoMay 20, 2026
Merged
Conversation
Two changes carried from jingerzz/clarion-intelligence-system: 1. **SKILL.md — persona/rule install removed from autonomous path.** The upstream `clarion-setup` no longer installs the 7 Clarion personas + 8 routing rules during its autonomous install. Those moved to an opt-in follow-up prompt (*"install Clarion personas and routing rules"*) because the persona/rule parsing of the 62KB PERSONAS-AND-RULES.md doc was consuming ~5 minutes of the install path (vs ~30 seconds for the rest). Skills are functional standalone — the persona layer is chat-UX discipline, not a functional gate. Updated frontmatter description, Flow at a glance, idempotency, and on-error sections accordingly. Step count drops from 9 to 7. 2. **setup.py — sync free-tier reasoning_model default (PR zocomputer#23).** Back-syncs PR zocomputer#23 in the upstream repo: the `DEFAULT_CONFIG[ "reasoning_model"]` shipped by the bootstrap setup.py was still subscriber-tier `zo:anthropic/claude-opus-4-7` in the registry, while the upstream repo updated to free-tier `zo:openai/gpt-5.4-mini` weeks ago. The mismatch meant fresh installs from the registry got a subscriber-tier default despite ARCHITECTURE.md's "all defaults are free-tier" policy. Both are now aligned. Upstream PR: jingerzz/clarion-intelligence-system#27 Validator: `bun validate` passes (warnings exist for other skills, not clarion-*). Co-Authored-By: Claude Opus 4.7 <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.
Summary
Syncs two changes from
jingerzz/clarion-intelligence-systeminto the registry mirror atExternal/clarion-setup/:SKILL.md — persona/rule install removed from autonomous path. The
clarion-setupskill no longer installs the 7 Clarion personas + 8 routing rules during its autonomous install. Those moved to an opt-in follow-up prompt described indocs/PERSONAS-AND-RULES.md. Skills are functional standalone; the persona layer is chat-UX discipline.setup.py — sync free-tier
reasoning_modeldefault. Carriesjingerzz/clarion-intelligence-system#23into the registry, which was never back-synced. Bootstrap default changes from subscriber-tierzo:anthropic/claude-opus-4-7to free-tierzo:openai/gpt-5.4-mini, matching the upstream "all defaults are free-tier" policy.Motivation
Install speed (change 1). A real user install transcript showed the autonomous portion of
clarion-setuptook ~7 minutes — of which ~5 minutes was the agent parsing the 62KBPERSONAS-AND-RULES.mddoc (nested triple-backtick code fences in persona prompts are agent-hostile) and callingcreate_persona× 7 +create_rule× 8 sequentially. Moving personas/rules out of the autonomous path drops the install to ~30 seconds. Users who want persona routing opt in afterward via a separate prompt; the bare install still gives them the working library, all sibling skills, and the registeredsec-indexerservice.Free-tier consistency (change 2). Fresh installs from the registry today get
zo:anthropic/claude-opus-4-7as thereasoning_modeldefault — a subscriber-tier model. Free-tier users hit tier-access errors. The upstream policy inARCHITECTURE.md's "Default model selection" is "all defaults are free-tier"; this PR aligns the registry-shippedsetup.pywith that policy.Diff summary
External/clarion-setup/SKILL.mdExternal/clarion-setup/scripts/setup.pyDEFAULT_CONFIG["reasoning_model"]fromzo:anthropic/claude-opus-4-7→zo:openai/gpt-5.4-mini. Adds an explanatory comment.Validation
Passes. Warnings exist for other External skills (theme-factory, xlsx, etc.) but none for
External/clarion-setup.Test plan
install the clarion-setup skillinvocation from chat should complete the autonomous portion in ~30 seconds (vs ~7 minutes today)service_doctorverification all happen automatically as beforelist_personas()andlist_rules()post-install — counts unchanged from pre-install)clarion-setupdon't modify Zo Settings)Upstream context
Upstream PR (carries the same SKILL.md change + companion doc updates in
README.md,ARCHITECTURE.md,docs/TEST-PLAN.md,docs/PERSONAS-AND-RULES.md): jingerzz/clarion-intelligence-system#27🤖 Generated with Claude Code