Install
$ agentstack add skill-ao92265-claude-code-playbook-check-env ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Check Environment
Pre-flight environment check before starting dev work. Run this at the start of a session to avoid wasting time on infrastructure issues.
Steps
- Check for running Docker containers that might conflict:
docker psto list running containers- Flag any containers using common ports (3000, 3001, 5432, 1433, 8080)
- Check for port conflicts on common dev ports:
lsof -i :3000,3001,5432,1433,8080 2>/dev/nullto find processes using these ports- Report what's using each occupied port
- Verify environment files exist:
- Check for
.envor.env.localin the current project - Warn if missing but don't expose contents
- Check Docker daemon is running (if project uses Docker):
docker info > /dev/null 2>&1to verify Docker is available
- Check Node.js and npm/yarn availability:
node --versionandnpm --version
- Verify git status and credentials:
git statusto show current branch and any uncommitted changesgh auth statusto verify GitHub credentials work- Test push access:
git ls-remote origin HEADto confirm remote connectivity
- Check available memory for builds:
- Report current Node.js version and default heap size
- Recommend
NODE_OPTIONS='--max-old-space-size=4096'if project has large builds
- Report a clean summary of findings with any issues flagged clearly.
Important
- Do NOT start fixing issues automatically — report them and ask what to do
- Do NOT expose .env file contents
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ao92265
- Source: ao92265/claude-code-playbook
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.