run-local

A local development launcher for projects that use .NET Aspire or Docker Compose to run multiple services together. It can also start the project's frontend development server.

In plain words
What is it for?
Use it to start a complete local environment for manual testing, start only the backend, or skip the development dashboard.
Why use it?
It removes the manual work of finding the project's services, checking its configuration, and starting each part separately. It also checks whether Docker is available when required.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/makigjuro/cloudstack-ai-plugins/run-local
Any agent
npx skills add makigjuro/cloudstack-ai-plugins --skill run-local
Clone the repo
git clone --depth 1 https://github.com/makigjuro/cloudstack-ai-plugins

Made for: Claude Code, Codex.

Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 769 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00034 $0.00769
Opus 5 $0.00017 $0.00385
Sonnet 5 $0.00007 $0.00154
Haiku 4.5 $0.00003 $0.00077

Measured 2d ago against content hash 2cf12272aff2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

run-local scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/dev-workflow/skills/run-local/SKILL.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Run Local

Start the local development environment using the configured orchestrator.

Arguments

  • --backend-only -- Skip the frontend dev server
  • --no-dashboard -- Skip opening the orchestrator dashboard

Configuration

Read cloudstack.json from the project root at the start of execution. Extract:

  • FRONTEND_PATH = frontend.path (default: web)
  • FRONTEND_PORT = frontend.devPort (default: 5173)

Additionally check for local dev configuration. The skill supports two orchestrators:

Option A -- .NET Aspire (default if AppHost project exists): Look for a project directory matching *AppHost* under src/. If found:

  • APP_HOST_PATH = path to the AppHost project
  • DASHBOARD_PORT = the Aspire dashboard port (typically 15888, check launchSettings.json)

Option B -- Docker Compose: If no AppHost project exists, look for docker-compose.yml or docker-compose.yaml in the repo root or src/.

If cloudstack.json does not exist, auto-detect by scanning the project structure.

Process

Step 1: Pre-flight

# Verify Docker is running (required for databases, messaging, caches)
docker info > /dev/null 2>&1 || echo "ERROR: Docker is not running. Start Docker first."

# Verify .NET SDK
dotnet --version

Step 2: Start Services

If using .NET Aspire:

cd ${APP_HOST_PATH} && dotnet run

The Aspire dashboard will be available at https://localhost:${DASHBOARD_PORT}.

If using Docker Compose:

docker compose up -d

Step 3: Start Frontend (unless --backend-only)

In a separate terminal:

cd ${FRONTEND_PATH} && npm run dev

Frontend available at http://localhost:${FRONTEND_PORT}.

Ports

The port table depends on your project configuration. Common defaults:

Service Port
Orchestrator Dashboard Varies (check config)
API Gateway 5000
Frontend (Vite) ${FRONTEND_PORT}
PostgreSQL 5432

Check your app host or docker-compose file for the actual port mappings.

Read the full file on GitHub · 105 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 105 lines · 34 tokens per session scan A 2cf12272aff2

Subscribe to this mod's changes

run-local is a skill published in the GitHub repository makigjuro/cloudstack-ai-plugins (1 stars, last pushed 1mo ago), licensed MIT. It adds 34 tokens to every session and 769 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

azsdk-common-pipeline-analysis

Analyze Azure SDK CI/CD pipeline failures into a structured diagnosis, and define the required output format. Load this skill before calling azsdkanalyzepipeline, which returns raw failure data that this skill interprets and formats. USE FOR: "pipeline failed", "build failure", "CI check failing", "tests failing in…

Azure/azure-sdk-for-net · 192 tokens

omh-buzz

This is a Hermes-native buzz workflow skill.

rlaope/oh-my-hermes · 95 tokens

redteam-api-detail-pack

Domain routing and boundary guidance for authorized API security testing, including BOLA/IDOR, authentication bypass, mass assignment, missing rate limits, and GraphQL issues. Use when a task belongs to the API testing domain and needs scope, evidence, pivot, or exit criteria.

Netw0rkNoob/VulnClaw · 61 tokens

android-pentest

安卓应用渗透测试 — APK分析、Hook、自动化测试、运行态驱动、签名恢复、抓包分析.

Netw0rkNoob/VulnClaw · 32 tokens

auditing-azure-active-directory-configuration

Auditing Microsoft Entra ID (Azure Active Directory) configuration to identify risky authentication policies, overly permissive role assignments, stale accounts, conditional access gaps, and guest user risks using AzureAD PowerShell, Microsoft Graph API, and ScoutSuite.

xalgorix/xalgorix · 58 tokens