بنقرة واحدة
cs-update
Check for Codescope updates and install the latest version. Self-update mechanism.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Check for Codescope updates and install the latest version. Self-update mechanism.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
End-to-end MCP server verification — spawn stdio server, list tools, invoke each one, verify response shape.
Set up a demo session — pick a sample repo, index it, open web UI, prep the narrative.
Run full lint + format + test + frontend build. Pre-commit / pre-release check.
Cut a release — bump version, update CHANGELOG, tag, push, create GitHub release, install local binaries.
Sprint / project status from knowledge graph. Show what's planned, in-progress, done.
Audit MCP tool set — count, descriptions, consolidation candidates, budget compliance.
| name | cs-update |
| description | Check for Codescope updates and install the latest version. Self-update mechanism. |
| user-invocable | true |
| disable-model-invocation | true |
Check for the latest version and update if available.
Steps:
Get the current installed version:
codescope --version 2>/dev/null || codescope-mcp --version 2>/dev/null || echo "unknown"
Check the latest release from GitHub:
curl -fsSL https://api.github.com/repos/onur-gokyildiz-bhi/codescope/releases/latest 2>/dev/null | grep -o '"tag_name": *"[^"]*"' | head -1 | sed 's/.*"v\?\([^"]*\)"/\1/'
Compare versions. If they match, report "Already up to date" and stop.
If an update is available, ask the user for confirmation, then run the appropriate installer:
Windows (PowerShell):
powershell -Command "irm https://raw.githubusercontent.com/onur-gokyildiz-bhi/codescope/main/install.ps1 | iex"
Linux / macOS:
curl -fsSL https://raw.githubusercontent.com/onur-gokyildiz-bhi/codescope/main/install.sh | bash
Verify the update:
codescope --version
Report the result:
Codescope updated: v0.4.0 -> v0.5.0