AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Check Env

skill-ao92265-claude-code-playbook-check-env · by ao92265

>

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-ao92265-claude-code-playbook-check-env

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ao92265-claude-code-playbook-check-env)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Check Env? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. Check for running Docker containers that might conflict:
  • docker ps to list running containers
  • Flag any containers using common ports (3000, 3001, 5432, 1433, 8080)
  1. Check for port conflicts on common dev ports:
  • lsof -i :3000,3001,5432,1433,8080 2>/dev/null to find processes using these ports
  • Report what's using each occupied port
  1. Verify environment files exist:
  • Check for .env or .env.local in the current project
  • Warn if missing but don't expose contents
  1. Check Docker daemon is running (if project uses Docker):
  • docker info > /dev/null 2>&1 to verify Docker is available
  1. Check Node.js and npm/yarn availability:
  • node --version and npm --version
  1. Verify git status and credentials:
  • git status to show current branch and any uncommitted changes
  • gh auth status to verify GitHub credentials work
  • Test push access: git ls-remote origin HEAD to confirm remote connectivity
  1. 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
  1. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.