Agent skill · AI & Agents

skill-upgrader

Upgrade any skill to v5 Hybrid format using decision theory + modal logic

parcadeigithub.com/parcadeiGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill skill-upgrader --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: BashReadWriteEditTaskGlobGrep
Path: .claude/skills/skill-upgrader/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Skill Upgrader Meta-skill that upgrades any SKILL.md to Decision Theory v5 Hybrid format using 4 parallel Ragie-backed agents. ## When to Use - "Upgrade this skill to v5" - "Formalize this skill with decision theory" - "Add MDP structure to this skill" - "Apply the skill-upgrader to X" ## Prerequisites Ragie RAG with indexed books: - **decision-theory partition**: LaValle Planning Algorithms, Sutton & Barto RL - **modal-logic partition**: Blackburn Modal Logic, Huth & Ryan Logic in CS ## Workflow ### Step 1: Setup Session ```bash SESSION=$(date +%Y%m%d-%H%M%S)-upgrade-{skill_name} mkdir -p thoughts/skill-builds/${SESSION} ``` ### Step 2: Initialize Blackboard Create `thoughts/skill-builds/{session}/00-blackboard.md`: ```markdown # Skill Upgrade: {skill_name} Started: {timestamp} ## Input Skill {path_to_skill} ## Target Format Decision Theory v5 Hybrid ## Agent Findings (Agents append below) --- ``` ### Step 3: Launch 4 Agents in Parallel Use Task tool to spawn all 4 agents simultaneously. Each agent: 1. Reads the input skill 2. Queries Ragie for their specific book 3. Appends findings to the blackboard --- ## Agent 1: LaValle Planner **Book:** LaValle's "Planning Algorithms" (dec

What's inside
Steps it walks through
  1. When to Use
  2. Prerequisites
  3. Workflow
  4. Step 1: Setup Session
  5. Step 2: Initialize Blackboard
  6. Step 3: Launch 4 Agents in Parallel
  7. Agent 1: LaValle Planner
  8. Agent 2: Sutton & Barto Optimizer
  9. Agent 3: Blackburn Modal Logician
  10. Agent 4: Huth & Ryan Verifier
  11. Step 4: Synthesize Final Skill
  12. Example Usage
  13. Ragie Query Reference
  14. Files Created
Commands it runs
mkdir -p thoughts/skill-builds/${SESSION}
Decision theory partition
uv run python scripts/ragie_query.py -q "your question" -p decision-theory
Modal logic partition
uv run python scripts/ragie_query.py -q "your question" -p modal-logic
With reranking for better results
uv run python scripts/ragie_query.py -q "your question" -p decision-theory --rerank
More from Continuous-Claude-v3
All skills →
About this skill
What does the skill-upgrader skill do?

Upgrade any skill to v5 Hybrid format using decision theory + modal logic

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill skill-upgrader --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going