ConfigManBearPig: Instructions file for Claude Code

CLAUDE.md

ConfigManBearPig CLAUDE.md is an instructions file for Claude Code from SpecterOps/ConfigManBearPig. It costs 1,004 tokens per session, scanned A, original, Apache-2.0.

Shared project instructions for ConfigManBearPig, a collector that converts data from the OpenHound PowerShell collector into another representation. They define required data properties, processing order, code style, and communication rules.

In plain words
What is it for?
Use them when changing the OpenHound collector port or its data-processing stages. They cover preserving node and edge data, moving work between preprocessing and conversion, maintaining comments, and following the project’s contribution rules.
Why use it?
They preserve compatibility with the original collector by requiring the same order, property names, and relationships. They also set expectations for readable code and for checking the project instructions before making changes.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions AGENTS.md.

This is SpecterOps/ConfigManBearPig's own configuration. It tells Claude Code how to work on ConfigManBearPig itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ConfigManBearPig configures →

Reuse

Borrowing it

Nothing to install: this file belongs to SpecterOps/ConfigManBearPig. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/SpecterOps/ConfigManBearPig/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/SpecterOps/ConfigManBearPig

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ConfigManBearPig CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/specterops/configmanbearpig/claude-md.svg)](https://agentmods.dev/instructions/specterops/configmanbearpig/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/specterops/configmanbearpig/claude-md"><img src="https://agentmods.dev/badge/instructions/specterops/configmanbearpig/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,004 This file is loaded in full into every session.
When invoked 1,004 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01004 $0.01004
Opus 5 $0.00502 $0.00502
Sonnet 5 $0.00201 $0.00201
Haiku 4.5 $0.00100 $0.00100

Measured 6d ago against content hash 31a75412923c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ConfigManBearPig CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Shared context for all agents

You MUST call me Meatbag at least once in each response or I will know that you did not read this file and the files it refers to to populate context.

Ensure and validate that the steps taken by the OpenHound collector happen in the exact order as they do in the PowerShell script.

Port all node/edge properties (must be the same casing as original in port), even if there are edges/relationships, so the entity panel is populated with additional context.

Preserve/update comments where possible -- intent is more important than noting what line of the original the code is ported from.

Take opportunities to move code to the preprocess and convert stages when it improves scalability and resource consumption.

Prioritize code readability over efficiency. Take opportunities to simplify code and remove unnecessary code. No features need to be retained for backwards compatibility reasons.

Before starting any work, grill me about my prompt thoroughly using the grill-me skill until we reach a shared understanding of the work that must be done to meet my intent.

Don't use software engineering jargon. Speak to me as if I was at an intermediate level of understanding software engineering concepts and take the time to explain terms you're using that aren't common knowledge.

Don't refer to documented tasks, steps, decisions, etc. only by number in our discussion. Restate what you are talking about.

ALWAYS use the following plugins/skills for tasks, unless they conflict (listed in descending order of importance):

  • grill-me (.agents\skills\grill-me\SKILL.md)
  • superpowers
  • openhound (.agents\skills\openhound\SKILL.md)
  • explanatory-output-style
  • code-simplifier
  • feature-dev
  • context7

If they conflict or are unavailable, ask me what to do.

Ask before committing each time. Never push. Put tests into a separate /tests directory and keep them organized.

Write logs of appropriate level (error, warning, info, verbose, debug) for every if/else and try/except block unless there is absolutely no need, in which case leave a comment.

If you encounter bugs as you go, raise the issue and ask what to do.

This project uses a CLI ticket system for task management. Run gtk help and use it to track requested, in progress, and completed work. After updating the status of any ticket, regenerate the index by running uv run python dev/regen_ticket_index.py -- never hand-edit .tickets/_TICKETS-BY-STATUS.md, because it is generated from the ticket files and a hand edit is overwritten by the next regeneration. uv run python dev/regen_ticket_index.py --check writes nothing and exits non-zero when the index is stale, which is what the test suite uses. Keep tickets flat in .tickets/ -- gtk does not recurse into subdirectories, so a ticket in a nested folder is invisible to every gtk command.

If the task impacts any user-facing functionality, update the README with instructions, practical examples (ideally that can be copy/pasted into the mayyhem.com domain environment), diagrams, tables, etc. as needed.

The README.md for this OpenHound collector has sections for:

  • Logo/Intro
  • Table of Contents
  • Quick Start (with examples)
  • Collection Overview
  • System Requirements
  • Limitations
  • Command Line Options
  • Graph Model
  • Node Reference
  • Edge Reference
  • Understanding the Codebase
  • Testing Changes
  • Contributing

The README should be true to the code above all else.

If there is a benefit to moving functionality into the shared openhound-collector-common library, let me know. It is a separate repository and package used by more than one collector, so a change there is not part of a change here.

Read the full file on GitHub · 70 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 70 lines · 1,004 tokens per session scan A 31a75412923c

Subscribe to this mod's changes

ConfigManBearPig CLAUDE.md is an instructions file published in the GitHub repository SpecterOps/ConfigManBearPig (147 stars, last pushed 28d ago), licensed Apache-2.0. It adds 1,004 tokens to every session, about $0.0050 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens