ワンクリックで
claude-tweaks-version
Use when you want to know which version of the claude-tweaks plugin is installed.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when you want to know which version of the claude-tweaks plugin is installed.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when you want to sweep every built-but-unsigned-off work record — or recap and sign off on ad hoc work from this same conversation that has no work record at all — and give each one a human verdict, approve or request changes. The durable acceptance gate distinct from tests passing (/test) and code-quality review (/review). Keywords - acceptance, sign-off, demo, verification brief, human verdict, demo:pending, session-recall.
Use when you need a quick reference for available commands, want to see workflow status, or need a recommendation for what to do next.
Use when the backlog needs hygiene — review stale backlog records, parked-trigger wakes, unsynced local records, and orphaned plans/worktrees
Use when /claude-tweaks:review passes and you need to capture learnings, clean up specs/plans, update skills, and decide next steps. The lifecycle closure step.
Use when you need to create, update, query, or resolve open items in a pipeline ledger file. Called by /claude-tweaks:build, /claude-tweaks:test, /claude-tweaks:review, /claude-tweaks:wrap-up, and /claude-tweaks:flow — or standalone for ledger inspection.
Use when implementing a work record, spec, or design doc end-to-end. Accepts a record reference (#N) or spec number (legacy alias) for full lifecycle tracking, or a design doc path to skip /claude-tweaks:specify and build directly from brainstorming output.
| name | claude-tweaks:version |
| description | Use when you want to know which version of the claude-tweaks plugin is installed. |
Interaction style: Present single decisions via the
AskUserQuestiontool (options with one marked Recommended) instead of a plain-text numbered list. For multi-item decisions, render a batch table with recommended actions pre-filled, then capture the apply-all/override decision via oneAskUserQuestioncall. Never make more than oneAskUserQuestioncall per logical decision — resolve each before showing the next. End skills with a## Next Actionsblock rendered viaAskUserQuestion(context-specific options, one recommended), not a navigation menu.
Print the installed claude-tweaks plugin version. Utility skill — no lifecycle position.
/claude-tweaks:capture → ... → /claude-tweaks:wrap-up
[ /claude-tweaks:version ] (utility, called from anywhere)
^^^^ YOU ARE HERE ^^^^
$ARGUMENTS controls output format:
| Argument | Behavior |
|---|---|
| (none) | Print the formatted line: claude-tweaks v{version} |
plain | Print just the version number (e.g., 4.2.0) — useful for piping/scripting |
full | Print version + description + repository URL |
plugin.jsonRead ${CLAUDE_PLUGIN_ROOT}/.claude-plugin/plugin.json. The version field is the source of truth. Do NOT hardcode the version anywhere else.
| Mode | Output |
|---|---|
| Default | claude-tweaks v{version} |
plain | {version} |
full | Three lines: claude-tweaks v{version}, then {description}, then {repository} |
Example full output (all three values come from plugin.json at render time — never hardcode them in this skill):
claude-tweaks v4.7.0
A structured workflow system for Claude Code — from idea capture through build, review, and wrap-up. Includes browser automation and QA pipeline.
https://github.com/thomasholknielsen/claude-tweaks
(The {version} / {description} / {repository} placeholders above are illustrative — actual output substitutes the live values from plugin.json.)
That's the entire skill — no decisions, no findings, no follow-up gates.
Call AskUserQuestion with question: "What's next?", header: "Next step", multiSelect: false, and:
label: "Pipeline status (Recommended)", description: "/claude-tweaks:help — full pipeline status and command reference"label: "Release notes", description: "https://github.com/thomasholknielsen/claude-tweaks/releases — release notes for this and prior versions"| Pattern | Why It Fails |
|---|---|
| Hardcoding the version in skill content | The version lives in plugin.json — anything else drifts. Always read from the source. |
| Adding decision prompts or finding gates | This is a one-shot read. Don't over-structure it. |
| Bumping the version inside this skill | Versioning is the maintainer's job — see CLAUDE.md "Versioning" section. |
| Padding the output with announcements like "Here's the version!" | The user asked for the version. Print it and stop. |
| Skill | Relationship |
|---|---|
/claude-tweaks:help | /help shows the full reference card; /version is the minimal "just the version" complement |
/claude-tweaks:init | /init may print the version during bootstrap; /version is its standalone equivalent |
_shared/auto-mode-contract.md | /version is a pure read — no decisions, no staged actions, no auto-mode interaction. Listed for completeness; the contract does not modify behavior. |