Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Core Plugin

Utility agents for infrastructure, operations, and development workflows.

Installation

claude plugin install core@coletebou

Agents

db-explorer

MongoDB and database query assistance. Helps construct queries, analyze schemas, and debug data issues.

Usage:

"Launch core:db-explorer to help me write a query for user aggregation"
"Use db-explorer to analyze the users collection schema"

Best for:

  • Writing complex MongoDB aggregation pipelines
  • Understanding collection schemas
  • Debugging data issues
  • Query optimization

deploy-verifier

Check deployment status across multiple environments (dev, staging, production).

Usage:

"Launch core:deploy-verifier to check if my changes are deployed"
"Use deploy-verifier to compare versions across environments"

Best for:

  • Verifying deployments completed successfully
  • Comparing versions across environments
  • Checking service health post-deploy

infra-checker

Verify server and service health. Checks systemd services, Cloudflare tunnels, and general infrastructure.

Usage:

"Launch core:infra-checker to verify the production server is healthy"
"Use infra-checker to check all systemd services"

Best for:

  • Server health checks
  • Service status verification
  • Infrastructure debugging

release-manager

Handles version bumps, changelog generation, and release tagging.

Usage:

"Launch core:release-manager to prepare a minor release"
"Use release-manager to create a hotfix release"

Best for:

  • Semantic version bumps
  • Changelog generation
  • Git tag creation
  • Release PR preparation

security-scanner

OWASP vulnerability scanning, secrets detection, and security pattern analysis.

Usage:

"Launch core:security-scanner to check for vulnerabilities"
"Use security-scanner to audit for hardcoded secrets"

Best for:

  • Pre-commit security checks
  • OWASP Top 10 scanning
  • Secrets detection
  • Security code review

test-runner

Run tests and analyze results with intelligent failure diagnosis.

Usage:

"Launch core:test-runner to run all tests"
"Use test-runner to run tests for the auth module"

Best for:

  • Running test suites
  • Analyzing test failures
  • Test coverage assessment

Configuration

These agents work out of the box but can be customized by:

  1. Environment variables: Set CLAUDE_MACHINE, database connection strings
  2. Project CLAUDE.md: Define project-specific paths and conventions
  3. Settings: Grant necessary Bash permissions for infrastructure commands

Requirements

Some agents require specific tools or access:

Agent Requirements
db-explorer mongosh or database CLI
deploy-verifier SSH access, curl
infra-checker SSH access, systemctl
release-manager Git, GitHub CLI (gh)
security-scanner None (pure analysis)
test-runner Project test runner (bun test, npm test, etc.)