Context Engine Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Context Engine Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Note: This project was inspired by the pioneering work in SuperClaude Framework and SuperGemini Framework. Special thanks to SuperClaude-Org team members @NomenAK and @mithun50 whose work made this possible.
SuperFlag provides 21 contextual flags that guide AI assistant behavior through precise directives. It exposes an MCP stdio server for seamless integration with modern AI development tools.
# Install globally
npm install -g @superclaude-org/superflag
# Interactive installation (choose platforms)
superflag install
# Direct installation for Claude Code
superflag install ccThen use flags in your AI assistant:
| Flag | Purpose |
|---|---|
--analyze | Multi-perspective evidence-based analysis with 3+ independent perspectives |
--performance | Measure-first optimization with baseline metrics and ROI calculation |
--refactor | Safe atomic refactoring with continuous test verification |
--strict | Zero-error transparent execution with verify-before-claim |
--lean | Minimal resource-efficient implementation eliminating waste |
| Flag | Purpose |
|---|---|
--discover | Research-first solution selection with 3+ alternatives comparison |
--explain | Progressive domain-expert disclosure from overview to details |
--save | Document development context for seamless continuation |
--load | Load and verify handoff context against git reality |
| Flag | Purpose |
|---|---|
--team | Multi-agent coordination with optional count (--team-N) |
--skill | Context-aware skill invocation — auto-selects appropriate skill |
--todo | Scope-locked task tracking with real-time progress |
--seq | Dependency-ordered sequential execution with checkpoints |
--collab | Evidence-anchored peer collaboration with quantitative validation |
| Flag | Purpose |
|---|---|
--concise | Precise professional content prioritizing accuracy over brevity |
--git | Anonymous atomic commits with ASCII-only WHY-focused messages |
--readonly | Analysis-only mode with absolute no-modification guarantee |
| Flag | Purpose |
|---|---|
--integrity | Verification-before-claim with evidence for every assertion |
--evolve | Monotonic forward improvement with regression prevention |
| Flag | Purpose |
|---|---|
--reset | Clear session and force fresh directives |
--auto | Grant autonomous flag selection authority |
# Install package globally
npm install -g @superclaude-org/superflag
# Interactive installation - choose your platforms
superflag installThe interactive installer will:
#### Claude Code
# Direct installation (MCP server auto-registered)
superflag install cc
# Verify connection
claude mcp listCreates:
~/.claude/CLAUDE.md - References @SUPERFLAG.md~/.claude/SUPERFLAG.md - Flag instructions~/.claude/hooks/superflag.py - Flag detection hookManual MCP Registration (if auto-registration fails):
# Add MCP server manually
claude mcp add superflag npx @superclaude-org/superflag@latest -s user
# Or add to ~/.claude.json
{
"mcpServers": {
"superflag": {
"command": "npx",
"args": ["@superclaude-org/superflag@latest"],
"env": {}
}
}
}#### Gemini CLI
# Direct installation (MCP server auto-registered)
superflag install geminiCreates:
~/.gemini/GEMINI.md - References @SUPERFLAG.md~/.gemini/SUPERFLAG.md - Flag instructionsManual MCP Registration (if auto-registration fails):
// Edit ~/.gemini/settings.json
{
"mcpServers": {
"superflag": {
"type": "stdio",
"command": "npx",
"args": ["@superclaude-org/superflag@latest"],
"env": {}
}
}
}#### Continue (VS Code Extension)
# Direct installation (MCP server auto-registered)
superflag install cnCreates:
~/.continue/config.yaml - SuperFlag rules~/.continue/mcpServers/superflag.yaml - MCP server configurationManual MCP Registration (if auto-registration fails):
# Create ~/.continue/mcpServers/superflag.yaml
name: SuperFlag
command: npx
args:
- '@superclaude-org/superflag@latest'
env: {}# Install for all supported platforms
superflag install all
# Install for specific combinations
superflag install cc gemini # Claude Code + Gemini CLI
superflag install cn # Continue onlyAll platforms support using flags in natural conversation:
# Auto mode - AI selects appropriate flags
"Optimize this code --auto"
# Specific flag combinations
"--analyze --strict" # Thorough analysis with zero-error enforcement
"--save --explain" # Create documentation with detailed explanations
"--reset --todo" # Reset session and start task tracking
"--team-3 --todo" # Multi-agent work with 3 agents + task tracking
# Parametric flags
"--team-5" # Spawn 5 role-specialized agents
"--team" # Auto-determine team size from task complexity#### Claude Code
# Direct chat with flags
"Fix this bug --analyze --strict"
"Create documentation --save --explain"
# MCP tool access (advanced)
get_directives(['--flag1', '--flag2'])#### Gemini CLI
# Chat with flags
"Refactor this code --auto --performance"
# MCP server commands
@superflag --analyze --todo#### Continue (VS Code)
# In Continue chat
"Optimize this function --performance --lean"
# Use @ to access MCP tools
@get_directives(['--strict', '--analyze'])--reset when switching tasks or contexts/clear or /compact - use --reset to reinitialize--auto Flag--auto enables intelligent flag selection:
| Usage | Behavior |
|---|---|
--auto only | AI selects complete flag set automatically |
--auto --strict --analyze | AI applies specified flags + may add others |
--strict --analyze | Only specified flags, no auto-selection |
Note: Do not include --auto in direct get_directives() calls - it's for natural language use only.
~/.claude/
├── CLAUDE.md # References @SUPERFLAG.md
├── SUPERFLAG.md # Flag instructions
└── hooks/
└── superflag.py # Flag detection hook~/.gemini/
├── GEMINI.md # References @SUPERFLAG.md
├── SUPERFLAG.md # Flag instructions
└── settings.json # MCP server configuration (auto-registered)~/.continue/
├── config.yaml # SuperFlag rules and configuration
└── mcpServers/
└── superflag.yaml # MCP server settings (auto-registered)~/.superflag/
└── flags.yaml # Flag definitions and directives (all platforms)# Clone repository
git clone https://github.com/SuperClaude-Org/SuperFlag_Framework.git
cd SuperFlag_Framework
# Install dependencies
npm install
# Build TypeScript
npm run build
# Test locally
npm link
superflag --versionUpdate version in src/version.ts - all other files sync automatically during build.
flags.yaml - All 21 flag definitions and directives (3-Layer architecture)SUPERFLAG.md - Flag instructions installed to user config directoriessrc/server.ts - MCP stdio serversrc/install.ts - Interactive installer/uninstallersrc/directives.ts - Flag parsing from flags.yaml# Interactive removal - choose platforms to remove
superflag uninstall# Remove from specific platforms
superflag uninstall cc # Claude Code only
superflag uninstall gemini # Gemini CLI only
superflag uninstall cn # Continue only
superflag uninstall all # All platforms# Remove all configurations and package
superflag uninstall all
npm uninstall -g @superclaude-org/superflagSafety Features:
Auto-Registration Failed If MCP server wasn't automatically registered during installation:
# For Claude Code
claude mcp add superflag npx @superclaude-org/superflag@latest -s user
# For Gemini CLI - manually edit ~/.gemini/settings.json
{
"mcpServers": {
"superflag": {
"type": "stdio",
"command": "npx",
"args": ["@superclaude-org/superflag@latest"],
"env": {}
}
}
}
# For Continue - create ~/.continue/mcpServers/superflag.yaml
name: SuperFlag
command: npx
args:
- '@superclaude-org/superflag@latest'
env: {}MCP Connection Issues
# Check server status (Claude Code)
claude mcp list
# Re-register if needed
claude mcp remove superflag
superflag install cc # Auto-register againFlags Not Working
~/.claude/SUPERFLAG.md~/.gemini/SUPERFLAG.md~/.continue/config.yamlMIT
Need Help? File issues at: GitHub Repository
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.