Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add Marcel-Bich/marcel-bich-claude-marketplace/plugin install dogmaWrote 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.
[](https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/sync)<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/sync"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/sync/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/sync"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/sync.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00019 | $0.11898 |
| Opus 5 | $0.00010 | $0.05949 |
| Sonnet 5 | $0.00004 | $0.02380 |
| Haiku 4.5 | $0.00002 | $0.01190 |
Grade D, and why
sync scanned grade D with 2 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 10d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat ~/.claude/plugins/installed_plugins.json 2>/dev/null | grep -i "<plugin-name>" Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf "$TEMP_DIR" How it starts
The opening of the file, as written. The whole thing — 1,640 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude-Dogma: Intelligent Sync of Claude Instructions
You are executing the /claude-dogma command. Your task is to intelligently merge Claude instruction files from a source into the current project with user interaction for every decision.
Configuration
DEFAULT_SOURCE="https://github.com/Marcel-Bich/marcel-bich-claude-dogma"
Step 1: Parse Arguments
The user provided: $ARGUMENTS
Parse into SOURCE and INSTRUCTIONS (order does not matter, quotes optional):
Source detection (recognizable patterns):
- Starts with
http://orhttps://= Remote Git repo - Starts with
~/,./,../,/= Local path
Instructions detection:
- Everything else that is NOT a recognizable source pattern
- Quotes
"..."are optional but recommended for clarity
Valid combinations:
/dogma:sync -> DEFAULT_SOURCE, no instructions
/dogma:sync ~/source -> ~/source, no instructions
/dogma:sync focus on git rules -> DEFAULT_SOURCE, instructions
/dogma:sync "focus on git rules" -> DEFAULT_SOURCE, instructions
/dogma:sync ~/source focus on git rules -> ~/source, instructions
/dogma:sync ~/source "focus on git rules" -> ~/source, instructions
/dogma:sync "focus on git rules" ~/source -> ~/source, instructions
/dogma:sync focus on git rules ~/source -> ~/source, instructions
If user provided instructions, display them and follow throughout:
User instructions: "<instructions>"
Will follow these throughout the sync process.
If DEFAULT_SOURCE is "TODO_CONFIGURE_DEFAULT_SOURCE" and no source provided: Stop and tell the user: "Default source not configured. Please provide a source URL or path."
Step 2: Fetch Source to Temporary Directory
For Remote Repos
TEMP_DIR=$(mktemp -d)
git clone --depth 1 --branch main <REPO_URL> "$TEMP_DIR" 2>&1
if [ $? -ne 0 ]; then
rm -rf "$TEMP_DIR"
# Report error and stop
fi
SOURCE_DIR="$TEMP_DIR"
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.
- 10d ago First seen · 1,640 lines · 19 tokens per session scan D 02fcadfe2746
sync is a command published in the GitHub repository Marcel-Bich/marcel-bich-claude-marketplace (13 stars, last pushed today), licensed MIT. It adds 19 tokens to every session and 11,898 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it D with 2 findings (reads agent configuration directories, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
context-stats
Display context window usage and token statistics.
handoff
Create a handoff document for seamless session continuity.
hades-show-proposals
Show pending Asphodel memory update proposals.
hades-validate-memory
Validate every Asphodel memory file and report results.
security-scan
Run security audit on codebase.
test-suite
Run comprehensive test suite with coverage analysis.