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

Pip Boy

mcp-serban-marius-pip-boy · by serban-marius

War. War never changes. But your dev tooling should. — Personal Vault-Tec approved Claude Code plugin marketplace.

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

Install

$ agentstack add mcp-serban-marius-pip-boy

✓ 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 No
  • 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/mcp-serban-marius-pip-boy)

Reliability & compatibility

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

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

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 Pip Boy? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Pip-Boy 3000 Mark IV — Plugin Registry

> "War. War never changes. But your dev tooling should."

A personal curated collection of Claude Code plugins. Each plugin is a module you slot into your Pip-Boy to gain new capabilities.

> Warning: Make sure you trust a plugin before installing. Anthropic does not control what MCP servers, files, or other software are included in plugins. Check each plugin's homepage before use.

Structure

Plugins are organized by category, each with plugins/ (internal) and external_plugins/ (third-party) directories:

| Section | Contents | |---------|----------| | /common | General-purpose plugins for any project | | /development/common | Language-agnostic dev tools | | /development/js | JavaScript/TypeScript ecosystem | | /development/php | PHP ecosystem | | /development/python | Python ecosystem | | /infrastructure | Infrastructure & SRE plugins | | /seo | SEO and search tools | | /bi | Business Intelligence & analytics | | /product | Product management & design |

Installation

Add the marketplace:

/plugin marketplace add git@github.com:serban-marius/pip-boy.git

Or add to .claude/settings.json:

{
  "extraKnownMarketplaces": {
    "pip-boy": {
      "source": {
        "source": "git",
        "url": "git@github.com:serban-marius/pip-boy.git"
      }
    }
  },
  "enabledPlugins": {
    "plugin-name@pip-boy": true
  }
}

Install individual plugins with /plugin install {plugin-name}@pip-boy, or browse via /plugin > Discover.

Adding a Plugin

External (third-party)

  1. Pick the right category (e.g., common/, development/js/)
  2. Create {category}/external_plugins/{plugin-name}/
  3. Add .claude-plugin/plugin.json with metadata
  4. Add .mcp.json with MCP server configuration
  5. Add README.md with documentation
  6. Register in .claude-plugin/marketplace.json — or it doesn't exist

Internal

Same steps, but under {category}/plugins/{plugin-name}/.

Plugin Anatomy

plugin-name/
├── .claude-plugin/
│   └── plugin.json          # Plugin metadata (required)
├── .mcp.json                # MCP server configuration (optional)
├── commands/                # Slash commands (optional)
├── agents/                  # Agent definitions (optional) — frontmatter + Sudocode
├── skills/
│   └── skill-name/
│       ├── SKILL.md         # Skill definition — frontmatter + markdown
│       ├── references/      # Companion docs loaded on demand
│       └── bin/             # Executable scripts the skill invokes
├── rules/                   # Convention files (optional) — frontmatter + markdown
└── README.md                # Plugin documentation

YAML Frontmatter

Every .md content file (agents, skills, rules) starts with YAML frontmatter — the --- delimited block at the top. It's how Claude Code identifies and catalogs each piece. No frontmatter, no discovery.

Agent (agents/*.md):

---
name: recon-bot
description: Scouts the codebase for security vulnerabilities
tools: Read, Bash, Grep, Glob
model: inherit
skills: recon, threat-assess
---

Skill (skills/*/SKILL.md):

---
name: lockpick
description: "Crack open legacy code. Use when user says 'refactor', 'untangle', or '/lockpick'."
---

Rule (rules/*.md):

---
name: api-response-convention
description: Convention for structuring API response handlers
---

Sudocode — Agent Definition Language

All agents are written in Sudocode — a pseudocode convention that replaces free-form prose with structured, scannable instructions. Think of it as the programming language running on your Pip-Boy's OS.

Instead of dumping a wall of text and hoping the AI figures it out, Sudocode uses explicit keywords:

| Keyword | What it does | |---------|-------------| | DO | Execute an action | | READ | Read a file, API, or data source | | GATHER | Collect data from multiple sources | | CLASSIFY | Make a judgment call | | NEVER | Hard constraint — do not violate | | ALWAYS | Mandatory behavior | | PREFER...OVER | Soft preference | | IF...THEN...ELSE | Conditional logic | | FOR EACH...IN | Iteration | | OUTPUT | Produce structured results | | ON FAILURE | Graceful degradation |

Example (frontmatter + sudocode):

---
name: dependency-auditor
description: Audits project dependencies for security issues, license conflicts, and staleness
tools: Read, Bash, Grep, Glob, WebFetch
model: inherit
---

AGENT: dependency-auditor
ROLE: audit project dependencies for security, licensing, and freshness
PERSONA: thorough but concise security reviewer

RULES:
  NEVER install or modify packages — read-only
  ALWAYS check both direct and transitive dependencies
  PREFER official advisory databases OVER blog posts

WHEN invoked:
  1. READ package manifest
  2. DO `npm audit` or equivalent for detected ecosystem
  3. GATHER $advisories FROM GitHub Advisory Database
  4. FOR EACH $dep IN dependencies:
       CLASSIFY $dep AS up-to-date | outdated | abandoned | vulnerable
  5. IF license is copyleft THEN
       EMIT warning: "copyleft license detected"

OUTPUT audit-report:
  summary: one-paragraph health assessment
  critical: CVEs requiring immediate action
  outdated: deps more than 2 major versions behind
  recommendations: prioritized action items

ON FAILURE:
  IF registry unreachable THEN skip, note in output
  NEVER block on a single failure

Full spec: [docs/sudocode.md](docs/sudocode.md)

Documentation

See the official plugin docs for more.


"Another settlement needs your help. I've marked it on your map." — This README, every time you forget to register a plugin in marketplace.json

Source & license

This open-source MCP server 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.