scope-guard
Pre-implementation scope control: evaluate feature necessity and enforce branch size limits
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/athola/nm-imbue-scope-guardNight Market Skill — ported from claude-night-market/imbue. For the full experience with agents, hooks, and commands, install the Claude Code plugin.
Building more than what is needed takes choices away from those who work here next. Scope-guard is humility and foresight: preserving freedom by building only what is earned.
Table of Contents
- Philosophy
- When to Use
- When NOT to Use
- Quick Start
- 1. Score the Feature
- 2. Check Against Backlog
- 3. Verify Branch Budget
- 4. Monitor Thresholds
- Core Workflow
- Step 1: Calculate Worthiness (
scope-guard:worthiness-scored) - Step 2: Compare Against Backlog (
scope-guard:backlog-compared) - Step 3: Check Branch Budget (
scope-guard:budget-checked) - Step 4: Document Decision (
scope-guard:decision-documented) - Anti-Overengineering Rules
- Backlog Management
- Directory Structure
- Queue Rules
- Adding to Queue
- Integration Points
- With superpowers:brainstorming
- With superpowers:writing-plans
- During superpowers:executing-plans
- Required TodoWrite Items
- Related Skills
- Module Reference
Scope Guard
Prevents overengineering by both Claude and human during the brainstorm→plan→execute workflow. Forces explicit evaluation of every proposed feature against business value, opportunity cost, and branch constraints.
Philosophy
Core Belief: Not all features deserve implementation. Most ideas should be deferred to backlog until proven necessary.
Three Pillars:
- Worthiness Scoring - Quantify value vs cost before building
- Opportunity Cost - Compare against existing backlog
- Branch Discipline - Respect size thresholds
When To Use
- During brainstorming sessions before documenting designs
- During planning sessions before finalizing implementation plans
- When evaluating "should we add this?" decisions
- Automatically via hooks when branches approach thresholds
- When proposing new features, abstractions, or patterns
When NOT To Use
- Bug fixes with clear, bounded scope
- Documentation-only changes
- Trivial single-file edits (< 50 lines)
- Emergency production fixes
Quick Start
1. Score the Feature
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-athola-nm-imbue-scope-guard": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
extract
Analyze a codebase and build a knowledge base of business logic, architecture, data flow, and engineering patterns. The foundation for gauntlet challenges and agent integration
discourse
>- Scan community discussion channels (HN, Lobsters, Reddit, tech blogs) for experience reports and opinions on a topic
synthesize
>- Merge, deduplicate, rank, and format research findings from multiple channels into a coherent report. Use after research agents return their results
workflow-monitor
Detect workflow failures and inefficient patterns, then create GitHub issues for improvement via /fix-workflow
architecture-paradigm-hexagonal
Hexagonal (Ports and Adapters) architecture isolating domain logic from infrastructure