🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

agent-powerups

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agent-powerups

Local-first CLI for browsing, validating, running, and explicitly writing agent powerups.

Source
npmnpm
Version
0.4.2
Version published
Weekly downloads
51
183.33%
Maintainers
1
Weekly downloads
 
Created
Source

Agent-Powerups

Agent Powerups

Oh My Zsh for coding agents.

npm version npm weekly downloads CI GitHub release License Node.js version GitHub stars

Quickstart · Plugin Bundles · Installation · Security Model · Contributing

Agent Powerups is an Oh My Zsh-style collection of reusable skills, slash commands, MCP configs, hooks, AGENTS.md templates, and workflows for coding agents.

Today, this repo ships:

  • reusable skills
  • safe local CLI (apx) with runnable local checks
  • persistent Gemini relay for always-active secondary-agent delegation
  • validation and requirement-check scripts
  • verified local GitHub MCP check, smoke, and install flow
  • command, hook, workflow, examples, and AGENTS.md templates
  • 17 plugin bundles (3 stable, 10 beta, 4 experimental) with native install, marketplace metadata, and apx plugins inspection
  • user-intent profiles with apx profiles for curated skill/plugin sets

Native install is direct for humans. Safety boundaries stay around external tools, secrets, shell profiles, and MCP enablement.

What Is Here

PathStatusNotes
skills/shippedReusable agent workflows such as systematic-debugging and writing-plans
mcp/shippedLocal-first GitHub MCP config with check, smoke, and explicit install commands
agents-md/shippedStarter AGENTS.md templates
commands/shippedReview-first command prompts plus safe runnable checks
hooks/shippedReview-before-use hook recipes plus safe runnable checks
workflows/shippedScenario guides
plugins/shipped17 plugin bundles (3 stable, 10 beta, 4 experimental) with local-first discovery, validation, native install, and marketplace metadata
scripts/shippedValidation and tool-check helpers for this repo
examples/shippedMinimal safe setup examples

Quickstart

npm install -g agent-powerups
apx install claude --full

This installs the apx CLI globally and runs a full Claude Code setup — copies skills, plugins, and commands into ~/.claude/ and patches your CLAUDE.md. Use --dry-run to preview changes first.

Using Source Checkout (Development)

  • Clone and install deps:
git clone https://github.com/yeaight7/agent-powerups.git
cd agent-powerups
npm install
  • Build CLI and install globally:
npm run build
npm link
  • Check repo health:
apx doctor
apx doctor --full
  • Browse catalog:
apx list
apx info markitdown-file-intake
apx commands run ship-check
apx hooks run no-secrets-preflight --all
apx mcp check github-local --target generic
apx mcp smoke github-local --json
apx mcp install github-local --target codex --dry-run
  • Manual native install:
apx install codex --dry-run
apx install codex
apx install claude
apx install gemini
apx install codex --full
apx install codex --verbose

Default native install copies all root skills and plugin bundles into the selected agent root. Human output shows counts by default; use --verbose for per-file paths. --full also stages support assets under agent-powerups/ and updates existing global instructions with a backup.

  • Work with plugin bundles:
apx plugins list
apx plugins info dev-vitals
apx plugins validate --all
apx plugins install dev-vitals --target codex --dry-run
  • Try a local advisor CLI and save an artifact:
apx ask-codex "Return OK only" --json
apx ask-claude "Return OK only" --json
apx ask-gemini "Return OK only" --json
  • Start a persistent relay session (keeps context across turns):
apx relay init second-opinion
apx relay start second-opinion --provider gemini
apx relay ask second-opinion "Review this plan" --json
apx relay status second-opinion
apx relay stop second-opinion
  • Browse profiles:
apx profiles list
apx profiles info safe-core
apx profiles plan safe-core --target codex
  • Check deps without installing:
apx check markitdown-file-intake
apx check graphify
apx check ask-codex
apx check ask-claude
apx check ask-gemini

Preview supported dependency installers before asking for approval:

apx check defuddle --install-missing --dry-run
apx check markitdown-file-intake --install-missing --dry-run
apx check graphify --install-missing --dry-run
  • Install a single asset explicitly:
apx install markitdown-file-intake --target codex --dry-run
apx install ask-claude --target codex --dry-run
  • Agent-curated setup compatibility path:
apx setup codex --dry-run
apx setup codex --mode minimal --yes    # bootstrap only
apx setup codex --mode recommended --yes  # main agent setup (recommended)
apx setup codex --mode full --yes       # broad staging

Manual Setup (Primary)

apx install <codex|claude|claude-code|gemini> [--verbose]
apx install <codex|claude|claude-code|gemini> --full [--verbose]

Default manual install:

  • root skills/ -> <agent-root>/skills/
  • Codex/Claude plugin bundles -> <agent-root>/plugins/
  • Gemini plugin bundles -> <agent-root>/extensions/

Agent-Managed Setup

Give your agent access to this repo and ask it to run:

apx list
apx profiles list
apx setup <codex|claude-code|gemini> --mode recommended --yes

Agent will inspect available skills/plugins, propose a plan, and apply it.

Agent setup docs:

  • Keep repo validation in loop:
python scripts/validate-skills.py
python scripts/validate-catalog.py
python scripts/check-requirements.py

Catalog Overview

Current shipped skills:

  • agent-config-security-audit
  • agent-harness-design
  • agent-runtime-patterns
  • agent-session-forensics
  • ai-slop-cleaner
  • ask-claude
  • ask-codex
  • ask-gemini
  • autonomous-delivery-pipeline
  • bigquery-cost-audit
  • brainstorming
  • browser-automation-safety
  • bug-hunt
  • build-fix-minimal-diff
  • changelog-generator
  • codebase-migration-batches
  • context-compression
  • context-retrieval-loop
  • data-quality
  • dbt-incremental-strategy-audit
  • dbt-preflight
  • dbt-strategy
  • defuddle
  • deploy-pipeline-runbook
  • dispatching-parallel-agents
  • environment-doctor
  • filesystem-mcp-guardrails
  • finishing-a-development-branch
  • gh-address-comments
  • github-ci-failure-triage
  • graphify
  • hard-won-skill-extractor
  • json-canvas
  • local-rag-mcp
  • managed-codebase-context
  • markitdown-file-intake
  • mcp-server-builder
  • metric-impact-analyzer
  • model-routing
  • no-fluff
  • parallel-execution-engine
  • persistent-completion-loop
  • pr-review-ci-loop
  • pr-triage
  • prompt-evaluation-runner
  • receiving-code-review
  • red-team-eval-authoring
  • relay-claude
  • relay-codex
  • relay-gemini
  • release-readiness-protocol
  • repo-map
  • requesting-code-review
  • requirements-clarifier
  • review-comment-style-mining
  • safe-refactor
  • search-before-building
  • skill-authoring-guide
  • skill-evaluation-workbench
  • sql-business-logic-review
  • structured-code-search-mcp
  • subagent-team-orchestration
  • systematic-debugging
  • test-driven-development
  • using-git-worktrees
  • using-powerups
  • verification-before-completion
  • webapp-visual-testing
  • worktree-session-manager
  • writing-plans
  • writing-skills

Current shipped scripts:

  • scripts/validate-skills.py
  • scripts/validate-catalog.py
  • scripts/check-requirements.py

Current shipped MCP configs:

  • github-local
  • github-remote
  • context7
  • sequential-thinking
  • playwright
  • filesystem-repo-scoped
  • memory
  • fetch
  • time
  • git-local
  • postgres-readonly
  • supabase
  • vercel
  • cloudflare-docs
  • exa-search
  • atlassian
  • browserbase
  • e2b-sandbox

Current shipped AGENTS.md templates:

  • typescript-app
  • python-library
  • dbt-project
  • ml-project
  • open-source-maintainer

Current shipped command packs:

  • build-fix
  • changelog
  • debug
  • doctor
  • implement
  • mcp-check
  • mcp-smoke
  • plan
  • release
  • review
  • ship-check
  • triage
  • using-powerups
  • visual-review

Current shipped hook examples:

Safety:

  • no-secrets-preflight
  • destructive-bash-guard
  • env-file-mutation-approval
  • dependency-review

Quality:

  • validation-required
  • test-gate
  • lint-check
  • console-log-check
  • generated-file-warning
  • large-diff-warning
  • build-analysis-post
  • design-quality-check
  • migration-review-required
  • todo-fixme-blocker
  • pre-commit-quality-check
  • quality-gate-after-edit
  • typescript-post-edit-check
  • doc-file-warning

Productivity:

  • handoff-summary
  • handoff-completeness-check
  • session-context-restore
  • session-log
  • session-compaction-helper
  • session-lifecycle-state
  • auto-commit-message
  • dev-server-tmux-guard

Cloud:

  • cloud-cli-guard

MCP:

  • mcp-config-change-approval
  • mcp-write-guard
  • mcp-elicitation-guard

Current shipped examples:

  • minimal-setup-example
  • codex-setup-example
  • claude-code-setup-example

Current shipped workflows:

  • feature-iteration
  • agent-relay

Current shipped plugin bundles (stable):

  • dev-vitals
  • debugging-diagnostics
  • quality-gates

Current shipped plugin bundles (beta):

  • codebase-maintenance
  • data-engineering
  • documentation-systems
  • machine-learning-ops
  • codebase-intelligence
  • spec-driven-development
  • spec-quality-gates
  • context-efficiency
  • tool-integrations
  • memory-optimization

Current shipped plugin bundles (experimental):

  • software-engineering
  • agentic-systems
  • security-guardrails
  • agent-evaluation-lab

Schema details: docs/catalog-schema.md

Compatibility Matrix

Compatibility claims in this repo are intentionally narrow:

Asset classShipped todayCompatibility claim
Root skills/yesGeneric text-based skills; some also mention known agent surfaces
mcp/yes18 MCP configs for local and remote servers (GitHub, Supabase, Vercel, Cloudflare, Exa, Atlassian, Browserbase, E2B, and more); github-local has a full check/smoke/install flow
agents-md/yesPlain text templates
commands/yesReview-first markdown command prompts; Claude Code and Codex targets where provided
hooks/yesDocumentation recipes only; not installed automatically
workflows/yesPlain text scenario guides
plugins/yes17 plugin bundles (3 stable, 10 beta, 4 experimental) with native install, marketplace metadata, and apx plugins inspection
scripts/yesGeneric Python scripts
examples/yesPlain text setup examples only

More detail: docs/compatibility.md

Tool Requirements

Most shipped skills are pure text and need no extra installation.

Current optional external tools used by shipped skills:

SkillToolRequiredInstall
ask-codexCodex CLI (codex)yes for local advisor workflowinstall/configure Codex CLI
ask-claudeClaude Code CLI (claude)yes for local advisor workflowinstall/configure Claude Code CLI
ask-geminiGemini CLI (gemini)yes for local advisor workflowinstall/configure Gemini CLI
markitdown-file-intakeMicrosoft MarkItDown (markitdown)yes for conversion workflowpython -m pip install markitdown
defuddleDefuddle CLI (defuddle)yes for Defuddle workflownpm install -g defuddle
graphifyUpstream Graphify CLI + Python package (graphify, graphifyy)yes for graph workflowuv tool install graphifyy or pipx install graphifyy or python -m pip install graphifyy
pr-triageGitHub CLI (gh)optionalplatform package manager

Tool policy:

  • Do not assume tools are installed.
  • Do not auto-install without user approval.
  • Show install command before running it.
  • Prefer user-local or project-local installation where practical.

More detail: docs/tool-requirements.md and docs/installation.md

CLI Usage

npm install
npm run build
npm link
apx doctor
apx doctor --full --json
apx list
apx info markitdown-file-intake
apx check markitdown-file-intake
apx check graphify
apx ask-codex "Explain this code" --json
apx ask-claude "Review this patch" --json
apx ask-gemini "Brainstorm test cases" --json
apx relay start second-opinion --provider gemini --json
apx relay ask second-opinion "Review this plan" --json
apx relay stop second-opinion --json
apx ship-check --json
apx no-secrets-preflight --all --json
apx using-powerups
apx install codex --dry-run
apx install codex
apx install claude
apx install gemini
apx install codex --full
apx install markitdown-file-intake --target codex --dry-run
apx setup codex --dry-run
apx setup claude-code --dry-run
apx setup gemini --dry-run
apx setup codex --mode recommended --yes
apx setup claude-code --mode recommended --yes
apx setup gemini --mode recommended --yes

Migration note (v0.x)

apx install <agent> is now the primary manual install path and writes native skills/plugins by default. apx setup <agent> remains for compatibility and agent-curated setup; it is still dry-run by default unless --yes is passed.

Extra surfaces:

apx mcp list
apx mcp print github-local --target claude-code
apx mcp check github-local --target claude-code --json
apx mcp smoke github-local --json
apx mcp install github-local --target codex --dry-run
apx mcp install github-local --target claude-code --dry-run
apx mcp write github-local --target generic --dest .agent-powerups/github-local.json
apx agents-md list
apx agents-md print typescript-app
apx commands list
apx commands print ship-check --target generic
apx commands run ship-check --full
apx hooks list
apx hooks print no-secrets-preflight
apx hooks run no-secrets-preflight --path README.md
apx workflows list
apx workflows print feature-iteration
apx plugins list
apx plugins info dev-vitals
apx plugins validate --all
apx plugins install dev-vitals --target codex --dry-run
apx profiles list
apx profiles info safe-core
apx profiles plan safe-core --target codex
apx relay init second-opinion
apx relay start second-opinion --provider gemini --json
apx relay ask second-opinion "Review this plan" --json
apx relay status second-opinion --json
apx relay stop second-opinion --json

To explicitly copy a skill into a local Codex-visible folder, choose the destination yourself:

apx install ask-claude --target codex --dest .agent-powerups/installed/ask-claude

Plugin Bundles

Plugin bundles ship under plugins/. They are registered in both .claude-plugin/marketplace.json and .codex-plugin/marketplace.json. Gemini CLI uses local extensions; each plugin bundle includes gemini-extension.json and GEMINI.md.

  • use apx plugins list to discover bundles
  • use apx plugins info <name> to inspect a single bundle
  • use apx plugins validate --all to verify bundle structure
  • use apx plugins install <name> --target <codex|claude-code|generic> --dry-run before any write
  • use apx install <codex|claude|gemini> for full manual native install

Safety Warning

Review assets before loading them into a trusted agent environment.

  • Skills can instruct an agent to read local files or run commands.
  • Hooks can execute code when supported by the host agent.
  • MCP configs can expand tool access.
  • Install commands can modify the local environment.
  • Secrets should never be pasted into agent context unless strictly necessary.

See SECURITY.md and docs/security-model.md.

Contributing

Contribution guide: CONTRIBUTING.md

Acknowledgements: ACKNOWLEDGEMENTS.md

MCP configs: docs/mcp-configs.md

Roadmap: docs/roadmap.md

Keywords

claude-code

FAQs

Package last updated on 16 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts