agentsclimarketplace

Rudder environment check

Skill rudderlabs/rudder-agent-skills/plugins/rudder-core/skills/rudder-environment-check

Checks RudderStack tool prerequisites and reports status. Use when checking prerequisites, setup status, what tools are missing, or before running RudderStack workflows for the first timeFrom its SKILL.md

Install
npx -y skills add rudderlabs/rudder-agent-skills --skill rudder-environment-check

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 18 stars18 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 6 commands, including `which rudder-cli` and 5 more.
  • fetches URLsInstructs the agent to fetch 1 URL, including https://mcp.rudderstack.com/health.

SKILL.md

2.8 KB, 509 tokens by cl100k_base, as published. Nobody here has run it

RudderStack Environment Check

Quick diagnostic that checks all RudderStack tool prerequisites and provides actionable guidance.

When to Use

  • Before starting with RudderStack workflows
  • When troubleshooting "command not found" errors
  • To verify your development environment is ready

Check Process

Run these checks in sequence:

1. Check rudder-cli

# Check if installed
which rudder-cli

# If installed, check authentication
rudder-cli workspace info

2. Check Terraform (if using terraform workflows)

# Check if installed
which terraform

# If installed, check version
terraform version

# Check if provider is configured (run in project directory)
terraform providers

3. Check MCP Server Connectivity

# Check if hosted MCP server is reachable
curl -s -o /dev/null -w "%{http_code}" https://mcp.rudderstack.com/health

Output Format

Present results as a status table:

RudderStack Environment Check
─────────────────────────────────────────────────────
Tool                    Status      Action
─────────────────────────────────────────────────────
rudder-cli              ✓ Ready
  └─ authenticated      ✓ Ready     Workspace: <name>
terraform               ✗ Missing   Run: /rudder-terraform-setup
  └─ provider           ─ Skipped   (terraform required first)
mcp.rudderstack.com     ✓ Reachable
─────────────────────────────────────────────────────

Status Indicators

StatusMeaning
✓ ReadyTool installed and configured
✗ MissingTool not found, needs installation
─ SkippedDependency not met, check parent first
⚠ IssueTool found but configuration problem

Next Steps by Status

Tool MissingAction
rudder-cliRun /rudder-cli-setup or ask "help me install rudder-cli"
terraformRun /rudder-terraform-setup or ask "help me setup terraform for rudderstack"
MCP unreachableRun /rudder-mcp-setup or check network connectivity

Credential Security

  • This skill only checks tool availability and authentication status
  • Never logs or displays access tokens
  • Workspace info shows only workspace name/ID, not credentials

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.