ワンクリックで
output-style-enforcement
Monitors agent responses for style compliance and provides correction hints
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Monitors agent responses for style compliance and provides correction hints
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Validates iDumb plugin functionality through systematic pivotal trials and stress testing. Ensures all success criteria are met with concrete evidence. Use when testing any iDumb component or before considering implementation complete.
Guides the implementation of the iDumb plugin reboot following the 8-phase pivotal trial methodology. Use when building TypeScript engines, tools, and hooks for intelligent AI governance.
This skill should be used when the user asks to "orchestrate", "delegate", "coordinate agents", "enforce hierarchy", "mindful delegation", "hierarchical thinking", "chain of command", or "orchestrator patterns". Essential for coordinators and high-governance agents to maintain delegation integrity.
Complete iDumb governance protocols - hierarchical delegation, validation patterns, context anchoring, and expert-skeptic mode guidelines
Meta-skill for idumb-builder agent to transform confusing specifications into structured iDumb workflow modules with checkpoints, validation, and integration points. Use when creating reusable workflows, handling overlapping specs, or generating governance modules under .idumb/modules/. This skill enforces the iDumb vision: spec-driven development, context-first validation, drift detection, and hierarchical coordination.
This skill should be used when the user asks to "ingest meta-framework", "transform framework to idumb", "classify framework patterns", "create self-upgrading module", "meta-learning", "framework synthesis", "automated governance enhancement", "pattern extraction", "hierarchical framework analysis", or "iterative framework learning". Essential for idumb-builder to consume external frameworks like BMAD and transform them into iDumb-compatible governance patterns.
| name | output-style-enforcement |
| description | Monitors agent responses for style compliance and provides correction hints |
| version | 1.0.0 |
| license | MIT |
| metadata | {"audience":"ai-agents","workflow":"style-enforcement","package":"STYLE","activation":"manual"} |
Guide agents to follow their designated output styles through pattern-based detection and reminder injection. This skill provides reference documentation for AI behavior - actual enforcement happens in the plugin hooks.
This skill applies to:
output-style: configuration/idumb:style commandExpected sections are defined in the agent's output-style.sections[] array.
Detection Method: Regex for heading patterns
const sectionPattern = /^#{1,3}\s+(.+)$/gm
const headings = response.match(sectionPattern)
const missingCount = expectedSections.filter(s =>
!headings?.some(h => h.toLowerCase().includes(s.toLowerCase()))
).length
Threshold: Trigger reminder if >50% expected sections missing
Expected length categories:
concise: <300 wordsmoderate: 300-800 wordscomprehensive: >800 wordsDetection Method: Word count
const wordCount = response.split(/\s+/).length
Threshold: Trigger if >2x or <0.5x expected
Check for expected format elements:
evidence-table → Look for markdown table syntax |---|code-highlights → Look for code blocks ```bullet-lists → Look for - or * patternsWhen deviation detected (in experimental.chat.messages.transform):
experimental.chat.system.transform hook (style injection)idumb-state_anchor (deviation tracking)idumb-orchestrator (coordination)When deviation detected, add to next messages.transform:
---
⚠️ **Style Deviation Detected**
Your designated style is **governance-report** which requires:
- ✅ status-header (found)
- ❌ evidence-table (missing)
- ❌ recommendations (missing)
Please include these sections in your response.
---
| Check | Trigger Condition | Action |
|---|---|---|
| Missing Sections | >50% expected missing | Reminder |
| Wrong Length | >2x or <0.5x expected | Reminder |
| Missing Format | Key format element absent | Soft reminder |
| Repeated Violation | 3+ in same session | Stronger reminder |
Style enforcement can be configured in .idumb/brain/config.json:
{
"style": {
"enforcement": "reminder",
"reminderFrequency": 3,
"trackHistory": true
}
}