Show mise environment status — tools, env vars, tasks, release readiness. TRIGGERS - mise status, mise env, repo status, environment check.
From misenpx claudepluginhub terrylica/cc-skills --plugin miseThis skill is limited to using the following tools:
references/evolution-log.mdExecutes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Show a comprehensive overview of the current repo's mise environment.
Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.
Run these commands and present the results in a formatted summary:
mise --version
mise ls --current 2>/dev/null
# Show env vars, filtering out secrets
mise env 2>/dev/null | grep -v -i "TOKEN\|KEY\|SECRET\|PASSWORD\|CREDENTIAL" | sort
mise tasks ls 2>/dev/null
Group the output by colon-namespace prefix (e.g., release:, test:, cache:).
Check if the repo has release tasks configured:
# Check for release:full task
mise tasks ls 2>/dev/null | grep -q "release:full" && echo "✓ Release tasks configured" || echo "✗ No release tasks — run /mise:run-full-release to scaffold"
# Check for .releaserc.yml
ls .releaserc.yml .releaserc.json .releaserc 2>/dev/null && echo "✓ semantic-release configured" || echo "✗ No semantic-release config"
# Check GH_ACCOUNT
echo "GH_ACCOUNT: ${GH_ACCOUNT:-not set}"
# Show which mise config files are active
ls .mise.toml mise.toml .mise/tasks/ 2>/dev/null
═══════════════════════════════════════════
mise Environment Status: cc-skills
═══════════════════════════════════════════
Tools: node 25.0.0, bun 1.3.0, python 3.13
Account: terrylica
Tasks (32 total):
release: full, dry, status, preflight, version, sync, verify, clean, hooks
dev: lint, format, test
Release: ✓ Configured (release:full + .releaserc.yml)
Config: .mise.toml (42 lines)
═══════════════════════════════════════════
After this skill completes, check before closing:
Only update if the issue is real and reproducible — not speculative.