From ork
Assesses readiness for Claude model, Claude Code version, and OrchestKit plugin upgrades. Produces JSON report with 0-10 scores across 6 dimensions. Use before migrations.
npx claudepluginhub yonatangross/orchestkit --plugin orkThis skill is limited to using the following tools:
Evaluate platform upgrade readiness for Claude model transitions, Claude Code version bumps, and OrchestKit plugin updates. Produces a structured JSON assessment report with a 0-10 readiness score across 6 dimensions.
Upgrades Claude Code plugins by aligning skills, hooks, and patterns with latest capabilities and best practices. Use after updates, for modernization, or on user request.
Audits Claude Code configurations (CLAUDE.md, skills, settings, agents) against latest features, best practices, and changelog. Triggers on 'evolve', 'audit config', 'upgrade' requests.
Analyzes Claude Code setup including CLAUDE.md, commands, agents, skills, MCP, and CI/CD; evaluates mastery levels; researches latest trends; suggests prioritized upgrades.
Share bugs, ideas, or general feedback.
Evaluate platform upgrade readiness for Claude model transitions, Claude Code version bumps, and OrchestKit plugin updates. Produces a structured JSON assessment report with a 0-10 readiness score across 6 dimensions.
/ork:upgrade-assessment # Interactive assessment
/ork:upgrade-assessment --json # Machine-readable output
Tool: AskUserQuestion
Determine the assessment scope before scanning. Ask the user:
What type of upgrade are you assessing?
- Full platform - Model + CC version + OrchestKit (comprehensive)
- Model only - Switching Claude model (e.g., Sonnet 4.5 to Opus 4.6)
- CC version only - Claude Code version bump (e.g., 2.1.32 to 2.1.33)
- OrchestKit only - Plugin version upgrade (e.g., 5.x to 6.x)
Record the scope and target versions. If the user does not specify target versions, research the latest available in Phase 2.
Tools: Bash, Read, Grep, Glob
Run precondition checks and environment detection. Load details: Read("${CLAUDE_SKILL_DIR}/rules/detection-checks.md") for verification scripts and expected output format.
Tools: WebSearch, WebFetch
Research the target versions for new capabilities and breaking changes:
Research queries:
"Claude {target_model} capabilities release notes"
"Claude Code {target_version} changelog breaking changes"
"Claude {target_model} vs {current_model} differences"
Tools: Grep, Glob, Read
Scan the codebase for patterns affected by the upgrade. Load details: Read("${CLAUDE_SKILL_DIR}/rules/codebase-scan-patterns.md") for grep patterns and severity classification.
Rate readiness 0-10 across 6 dimensions using the scoring rubric from platform-upgrade-knowledge. Load details: Read("${CLAUDE_SKILL_DIR}/references/scoring-rubric.md") for per-dimension thresholds, weights, and score interpretation.
Generate prioritized action items based on Phase 3 findings and Phase 4 scores. Load details: Read("${CLAUDE_SKILL_DIR}/references/recommendation-format.md") for priority assignment algorithm, effort estimation, and recommendation structure.
The assessment produces a structured JSON report. Load details: Read("${CLAUDE_SKILL_DIR}/references/output-format.md") for the full schema and example.
Focus on Phases 1, 2, and 3. Key areas:
model: fieldsFocus on hook compatibility and skill format:
Focus on plugin structure:
Load on demand with Read("${CLAUDE_SKILL_DIR}/rules/<file>"):
| Rule | Impact | What It Covers |
|---|---|---|
detection-checks.md | HIGH | Precondition checks, environment detection scripts |
codebase-scan-patterns.md | HIGH | Grep patterns, severity classification |
knowledge-evaluation.md | HIGH | 6-dimension scoring rubric, severity classification |
knowledge-compatibility.md | HIGH | Version compatibility matrix, breaking change detection |
platform-upgrade-knowledge - Scoring rubric details and compatibility matrixork:doctor - Post-upgrade health validationork:explore - Codebase exploration for impact analysisork:verify - Verification of changes after migrationork:devops-deployment - CI/CD pipeline updatesLoad on demand with Read("${CLAUDE_SKILL_DIR}/references/<file>"):
| File | Content |
|---|---|
scoring-rubric.md | Detailed dimension scoring thresholds |
recommendation-format.md | Priority assignment and effort estimation |
output-format.md | JSON report schema and example |
platform-upgrade-knowledge/references/scoring-rubric.md for additional scoring detailsplatform-upgrade-knowledge/references/compatibility-matrix.md for version compatibility tracking