Apply plugin knowledge base updates to an existing generated system. Consults the Ars Contexta research graph for methodology improvements, proposes skill upgrades with research justification. Never auto-implements. Triggers on "/upgrade", "upgrade skills", "check for improvements", "update methodology".
Read these files to configure domain-specific behavior:
ops/derivation-manifest.md — vocabulary mapping, platform hints
vocabulary.notes for the notes folder namevocabulary.note / vocabulary.note_plural for note type referencesvocabulary.reduce for the extraction verbvocabulary.reflect for the connection-finding verbvocabulary.reweave for the backward-pass verbvocabulary.verify for the verification verbvocabulary.rethink for the meta-cognitive verbvocabulary.topic_map for MOC referencesops/config.yaml — processing depth, domain context
ops/derivation.md — derivation state and engine version
If these files don't exist, use universal defaults.
Target: $ARGUMENTS
Parse immediately:
START NOW. Reference below defines the upgrade process.
Skills do not upgrade through hash comparison against a generation manifest. Hash comparison answers a narrow question: "Has this file changed?" Meta-skill consultation answers the right question: "Is this skill's approach still the best approach given what we know?"
A skill could be unchanged but outdated because the knowledge base has grown. Or a skill could be heavily edited by the user but already incorporate the latest thinking through a different path. Reasoning about methodology is more valuable than diffing bytes.
Generated skills and meta-skills follow fundamentally different upgrade mechanisms:
| Category | Skills | Upgrade Mechanism |
|---|---|---|
| Generated skills | /{vocabulary.reduce}, /{vocabulary.reflect}, /{vocabulary.reweave}, /{vocabulary.verify}, /ralph, /next, /remember, /{vocabulary.rethink}, /stats, /graph, /tasks, /refactor, /learn, /recommend, /ask | Runtime consultation with knowledge graph |
| Meta-skills | /setup, /architect, /health, /reseed, /add-domain, /help, /tutorial, /upgrade | Plugin release cycle — update the plugin itself |
/upgrade evaluates generated skills. It cannot evaluate itself or other meta-skills — that is the plugin maintainers' responsibility.
Gather the vault's current state:
Read ops/derivation.md for:
Read ops/generation-manifest.yaml (if exists) for:
List all installed skills:
# Find all skill directories with SKILL.md
for dir in .claude/skills/*/; do
skill=$(basename "$dir")
version=$(grep '^version:' "$dir/SKILL.md" 2>/dev/null | head -1 | awk -F'"' '{print $2}')
gen_from=$(grep '^generated_from:' "$dir/SKILL.md" 2>/dev/null | head -1 | awk -F'"' '{print $2}')
echo "$skill v$version (from $gen_from)"
done
Read ops/config.yaml for current dimensional positions
Check for user modifications:
# Detect skills modified after generation
for dir in .claude/skills/*/; do
skill=$(basename "$dir")
file="$dir/SKILL.md"
[[ ! -f "$file" ]] && continue
# Check git status — modified files indicate user customization
git_status=$(git status --porcelain "$file" 2>/dev/null)
if [[ -n "$git_status" ]]; then
echo "MODIFIED: $skill"
fi
done
Present inventory:
--=={ upgrade : inventory }==--
System: {domain description}
Engine: arscontexta-{version}
Skills: {count} installed ({modified_count} user-modified)
Skill Version Generated From Modified
/{vocabulary.reduce} 1.0 arscontexta-v1.6 no
/{vocabulary.reflect} 1.0 arscontexta-v1.6 yes
...
For each generated skill (or the specific skill if targeted), consult the plugin's bundled knowledge base to evaluate whether the skill's current approach reflects current best practices.
Read from the plugin's four content tiers:
| Tier | Path | What It Contains |
|---|---|---|
| Methodology graph | ${CLAUDE_PLUGIN_ROOT}/methodology/ | All content — filter by kind: field (research/guidance/example) |
| Reference docs | ${CLAUDE_PLUGIN_ROOT}/reference/ | WHAT — structured reference documents and dimension maps |
Notes in methodology/ are differentiated by their kind: frontmatter field:
kind: research — WHY: principles and cognitive science grounding (213 claims)kind: guidance — HOW: operational procedures and best practices (9 docs)kind: example — WHAT IT LOOKS LIKE: domain compositions (12 examples)type: moc — Navigation: topic maps linking related notes (15 maps)For each skill being evaluated:
Read the current vault skill — understand its complete approach, quality gates, edge case handling
Read relevant knowledge base documents:
Compare methodology, not text:
Classify each finding:
| Classification | Meaning | Example |
|---|---|---|
| Current | Skill reflects knowledge base best practices | No action needed |
| Enhancement | Knowledge base adds technique the skill lacks | New quality gate, better search pattern |
| Correction | Knowledge base contradicts skill's approach | Outdated methodology, known anti-pattern |
| Extension | Knowledge base covers scenario skill ignores | New edge case, new domain pattern |
Check user modifications: If the skill has been modified by the user, read both the current (user-modified) version and evaluate whether:
For each skill with available improvements, create a structured proposal:
Skill: /{domain:skill-name}
Status: {current | enhancement | correction | extension}
User-modified: {yes | no}
Current approach:
{2-3 sentences describing what the skill currently does}
Proposed improvement:
{2-3 sentences describing what would change}
Research backing:
{Specific claims from the knowledge base that support this change}
- "{claim title}" — {how it applies}
- "{claim title}" — {how it applies}
Impact: {what changes for the user's workflow}
Risk: low | medium | high
Reversible: yes (previous version archived to ops/skills-archive/)
| Risk Level | Criteria |
|---|---|
| Low | Additive change (new quality gate, better logging). Existing behavior unchanged. |
| Medium | Modified behavior (different extraction strategy, changed search pattern). Output quality affected. |
| High | Structural change (different phase ordering, changed handoff format). Pipeline coordination affected. |
When a skill has been modified by the user AND an upgrade is available, show a side-by-side comparison:
Skill: /{domain:skill-name} (USER-MODIFIED)
Your version: Recommended:
[relevant section excerpt] [what knowledge base suggests]
Your customization:
{description of what the user changed and why it appears intentional}
Options:
(a) Keep your version unchanged
(b) Apply upgrade, preserving your customizations
(c) Apply upgrade, replacing your version (archived to ops/skills-archive/)
Option (b) requires the upgrade to be compatible with the user's changes. If they conflict, explain why and recommend (a) or (c).
--=={ upgrade }==--
Plugin: arscontexta-{current_version}
Knowledge base: {count} research claims, {count} guidance docs
Skills checked: {count}
Upgrades available: {count}
Enhancements: {n} | Corrections: {n} | Extensions: {n}
1. /{domain:skill-name}
Type: Enhancement
Change: {one-line summary}
Research: "{claim title}"
Risk: low
2. /{domain:skill-name} (USER-MODIFIED)
Type: Correction
Change: {one-line summary}
Research: "{claim title}", "{claim title}"
Risk: medium
Note: Side-by-side comparison available
...
{If no upgrades:}
All {count} skills reflect current best practices.
No upgrades needed.
Apply all? Select specific upgrades (e.g., "1, 3")?
Or "show 2" for side-by-side detail on a specific skill.
Wait for user response. Do NOT proceed without explicit approval.
For each approved upgrade:
mkdir -p ops/skills-archive
SKILL_NAME="{skill-name}"
DATE=$(date +%Y-%m-%d)
cp ".claude/skills/${SKILL_NAME}/SKILL.md" \
"ops/skills-archive/${SKILL_NAME}-${DATE}.md"
ops/derivation-manifest.mdops/config.yamlUpdate the skill's frontmatter:
---