Source profileQuality 84/100Review permissions

runkids/skillshare/.skillshare/skills/skillshare-devcontainer/SKILL.md

skillshare-devcontainer

Run CLI commands, tests, and debugging inside the skillshare devcontainer. Use this skill whenever you need to: execute skillshare CLI commands for verification, run Go tests (unit or integration), reproduce bugs, test new features, start the web UI, or perform any operation that requires a Linux environment. All CLI execution MUST happen inside the devcontainer — never run skillshare commands on the host. If you are about to use Bash to run `ss`, `skillshare`, `go test`, or `make test`, stop an

Source repository stars
2,519
Declared platforms
0
Static risk flags
1
Last source update
2026-08-03
Source checked
2026-08-04

Decision brief

What it does—and where it fits

Run CLI commands, tests, and debugging inside the skillshare devcontainer. Use this skill whenever you need to: execute skillshare CLI commands for verification, run Go tests (unit or integration), reproduce bugs, test new features, start the web UI, or perform any operation that requires a Linux environment.

Best for

  • Running ss / skillshare commands for verification
  • Running go test, make test, make check
  • Reproducing a bug report

Not for

  • Editing source code (do that on host via Read/Edit tools)
  • Running git commands (git works on host)

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/runkids/skillshare --skill ".skillshare/skills/skillshare-devcontainer"
Safe inspection promptEditorial

Inspect the Agent Skill "skillshare-devcontainer" from https://github.com/runkids/skillshare/blob/04aea45ebd1ecf703d117e7c931f3ba2f2378301/.skillshare/skills/skillshare-devcontainer/SKILL.md at commit 04aea45ebd1ecf703d117e7c931f3ba2f2378301. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Zero-Rebuild Workflow

    Source code is bind-mounted into the container at /workspace. The ss wrapper runs go build transparently on every invocation:

    Edit files on host (Read/Edit tools)docker exec $CONTAINER ss — picks up your changes instantlyNo make build, no restart, no rebuild step
  2. 02

    When to Use This

    Running ss / skillshare commands for verification

    Running ss / skillshare commands for verificationRunning go test, make test, make checkReproducing a bug report
  3. 03

    When NOT to Use This

    Editing source code (do that on host via Read/Edit tools)

    Editing source code (do that on host via Read/Edit tools)Running git commands (git works on host)Running make fmt, make lint (host-safe Go toolchain commands; no container needed)
  4. 04

    Architecture: Two Layers of Isolation

    Devcontainer = Linux environment with Go, git, pnpm, air (hot-reload). Source code is at /workspace (bind-mount of the host repo). The ss / skillshare wrapper auto-builds from source on every invocation — no manual make build needed. Edit code on the host, then immediately docke…

    Devcontainer = Linux environment with Go, git, pnpm, air (hot-reload). Source code is at /workspace (bind-mount of the host repo). The ss / skillshare wrapper auto-builds from source on every invocation — no manual make…ssenv = Isolated HOME directories within the devcontainer. Each env gets its own /.config/skillshare/, /.claude/, etc. Use ssenv when you need a clean state (testing init, install, sync) without polluting the container'…
  5. 05

    Entering the Devcontainer

    The quickest way — one command builds, initialises, and enters the shell:

    The quickest way — one command builds, initialises, and enters the shell:Works with or without VS Code — make devc handles the full lifecycle autonomously.If $CONTAINER is empty, tell the user: Devcontainer is not running. Start it with make devc-up.

Permission review

Static risk signals and limitations

Runs scripts

medium · line 2

The documentation asks the agent to run terminal commands or scripts.

Execute CLI commands and tests inside the devcontainer. The host machine is macOS but the project binary is Linux — running CLI commands on the host will silently produce wrong results or fail. This skill prevents that mistake.

Runs scripts

medium · line 49

The documentation asks the agent to run terminal commands or scripts.

make devc # build + init + interactive shell (one step)

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score84/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars2,519SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
runkids/skillshare
Skill path
.skillshare/skills/skillshare-devcontainer/SKILL.md
Commit
04aea45ebd1ecf703d117e7c931f3ba2f2378301
License
MIT
Collected
2026-08-04
Default branch
main
View the original SKILL.md

Execute CLI commands and tests inside the devcontainer. The host machine is macOS but the project binary is Linux — running CLI commands on the host will silently produce wrong results or fail. This skill prevents that mistake.

When to Use This

  • Running ss / skillshare commands for verification
  • Running go test, make test, make check
  • Reproducing a bug report
  • Testing a feature you just implemented
  • Starting the web UI dashboard
  • Any command that needs the skillshare binary or Go toolchain

When NOT to Use This

  • Editing source code (do that on host via Read/Edit tools)
  • Running git commands (git works on host)
  • Running make fmt, make lint (host-safe Go toolchain commands; no container needed)
  • E2E test runbooks → use cli-e2e-test skill instead (it handles ssenv isolation)

Architecture: Two Layers of Isolation

Host (macOS)
  └─ Devcontainer (Linux, Debian-based)
       ├─ Default HOME: /home/developer (persistent volume)
       ├─ Source: /workspace (bind-mount of repo root)
       └─ ssenv environments: ~/.ss-envs/<name>/ (isolated HOME dirs)

Devcontainer = Linux environment with Go, git, pnpm, air (hot-reload). Source code is at /workspace (bind-mount of the host repo). The ss / skillshare wrapper auto-builds from source on every invocation — no manual make build needed. Edit code on the host, then immediately docker exec to run it; the change is picked up automatically.

ssenv = Isolated HOME directories within the devcontainer. Each env gets its own ~/.config/skillshare/, ~/.claude/, etc. Use ssenv when you need a clean state (testing init, install, sync) without polluting the container's default HOME.

Zero-Rebuild Workflow

Source code is bind-mounted into the container at /workspace. The ss wrapper runs go build transparently on every invocation:

  1. Edit files on host (Read/Edit tools)
  2. docker exec $CONTAINER ss <command> — picks up your changes instantly
  3. No make build, no restart, no rebuild step

This also applies to go test — tests always compile against the latest source. The Web UI backend uses air for hot-reload (same zero-rebuild experience).

Entering the Devcontainer

The quickest way — one command builds, initialises, and enters the shell:

make devc           # build + init + interactive shell (one step)
make devc-up        # start only (no shell)
make devc-down      # stop
make devc-restart   # restart + re-run start-dev.sh
make devc-reset     # full reset (remove volumes), then `make devc` to re-init
make devc-status    # show container status

Works with or without VS Code — make devc handles the full lifecycle autonomously.

Programmatic access (for docker exec workflows)

CONTAINER=$(docker compose -f .devcontainer/docker-compose.yml ps -q skillshare-devcontainer 2>/dev/null)

If $CONTAINER is empty, tell the user:

Devcontainer is not running. Start it with make devc-up.

Then verify the binary:

docker exec $CONTAINER bash -c \
  '/workspace/.devcontainer/ensure-skillshare-linux-binary.sh && ss version'

Running Commands

Simple command (uses container's default HOME)

docker exec $CONTAINER ss <command> [flags]

Good for: ss version, ss status, ss list, ss check, ss audit.

Command with isolated HOME (clean state)

ENV_NAME="test-$(date +%s)"
docker exec $CONTAINER ssenv create "$ENV_NAME" --init
docker exec $CONTAINER ssenv enter "$ENV_NAME" -- ss status
# Cleanup when done:
docker exec $CONTAINER ssenv delete "$ENV_NAME" --force

Good for: testing init, install, sync, uninstall — anything that modifies config/state.

Multi-command sequence

docker exec $CONTAINER ssenv enter "$ENV_NAME" -- bash -c '
  ss install runkids/demo-skills --track --force
  ss list
  ss sync
'

Always use bash -c '...' for multi-command sequences inside ssenv enter.

Go tests

# All tests (unit + integration)
docker exec $CONTAINER bash -c 'cd /workspace && make test'

# Unit tests only
docker exec $CONTAINER bash -c 'cd /workspace && make test-unit'

# Integration tests only
docker exec $CONTAINER bash -c 'cd /workspace && make test-int'

# Specific test
docker exec $CONTAINER bash -c 'cd /workspace && go test ./tests/integration -run TestInit_Fresh -count=1'

# Specific package
docker exec $CONTAINER bash -c 'cd /workspace && go test ./internal/install/... -count=1'

Always cd /workspace before Go commands — ssenv changes HOME which can break module resolution.

Go tests with auth disabled

Some tests (e.g., TestResolveToken, TestAuthEnv) need auth credentials removed:

docker exec $CONTAINER bash -c '
  eval "$(credential-helper --eval off)"
  cd /workspace
  go test ./internal/github -run TestResolveToken -count=1
  eval "$(credential-helper --eval on)"
'

Web UI Dashboard

# Start (global mode)
docker exec $CONTAINER ui

# Start (project mode — uses ~/demo-project)
docker exec $CONTAINER ui -p

# Stop
docker exec $CONTAINER ui stop

Dashboard accessible at http://localhost:5173 (Vite dev server with HMR). API backend at http://localhost:19420. Logs: /tmp/api-dev.log, /tmp/vite-dev.log.

ssenv Quick Reference

ShortcutFull formPurpose
ssnew <name>ssenv create <name> + enterCreate and enter isolated shell
ssuse <name>ssenv enter <name>Enter existing isolated shell
ssrm <name>ssenv delete <name> --forceDelete environment
sslsssenv listList all environments
ssbackssenv resetLeave isolated context
sshelphelpShow all devcontainer commands

For automation (non-interactive), prefer ssenv enter <name> -- <command> over ssnew/ssuse (which launch subshells).

Ports

PortServiceNotes
5173Vite dev serverReact dashboard with HMR
19420Go API backendskillshare ui server
3000Docusaurusdocs command in devcontainer

Common Mistakes to Avoid

  1. Running ss on host — macOS binary won't match Linux container; always docker exec
  2. Forgetting cd /workspace — Go tests fail if HOME was changed by ssenv
  3. Using make test on host — builds macOS binary, then tests run against wrong arch
  4. Skipping --init on ssenv create — env won't have config; most commands will fail
  5. Not cleaning up ssenvssenv delete <name> --force after done; or ask user
  6. Running from /workspace root without -g — the ss wrapper auto-redirects to ~/demo-project in project mode; use -g for global or set SKILLSHARE_DEV_ALLOW_WORKSPACE_PROJECT=1
  7. Running make build before testing — unnecessary; the ss wrapper auto-builds from source every time

Rules

  • All CLI execution inside devcontainer — no exceptions
  • Use ssenv for stateful tests — don't pollute default HOME
  • Always verify — run the command and check output; never assume it worked
  • Clean up — delete ssenv environments after use (or ask user)
  • Report container ID — set $CONTAINER at the start and reuse throughout

Alternatives

Compare before choosing

Computed 97106

AI-Unified-Process/marketplace

browserless-test

Creates Vaadin Browserless server-side unit tests for Vaadin views covering navigation, component interactions, form validation, grid operations, and notifications. Use when the user asks to "write Browserless tests", "write Vaadin UI unit tests", "unit test a Vaadin view without a browser", "create view tests with the official Vaadin testing framework", or mentions Browserless testing, SpringBrowserlessTest, browserless-test-junit6, UI Unit Testing, or server-side Vaadin testing.

Computed 976

mgiovani/cc-arsenal

team-review

Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /r

Computed 957

event4u-app/agent-config

playwright-testing

Use when writing Playwright E2E tests — browser automation, visual regression testing, Page Objects, fixtures, and reliable test patterns.

Computed 94165

JasonColapietro/suede-creator-skills

suede-ai-eval

Design AI evals that catch regressions before users do: rubrics, test cases, failure modes, acceptance gates, and AI-SPEC artifacts.