From dev-workflow
This skill should be used when the user wants to "find contradictions", "check consistency", "validate my spec", "cross-check requirements", "spot inconsistencies", or has provided a body of information (spec, requirements, design doc) that needs consistency validation. Spawns parallel agents to hunt obvious and deeper contradictions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-workflow:spec-contradiction-hunterThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze user-provided specs, requirements, and design notes for internal contradictions, inconsistencies, and logical conflicts by dispatching parallel agents, each with a different analytical lens.
Analyze user-provided specs, requirements, and design notes for internal contradictions, inconsistencies, and logical conflicts by dispatching parallel agents, each with a different analytical lens.
If the user has not yet provided material to analyze, use AskUserQuestion to request it (spec, requirements, design decisions, constraints, etc.). Follow up until there is a substantial body of claims.
Launch all applicable agents with the Agent tool in a single message. Pass the full collected information in each agent's prompt.
Default agents:
surface-contradiction-hunter — direct, obvious conflicts (required)structural-contradiction-hunter — deeper logical/architectural incompatibilities (required)ambiguity-contradiction-hunter — hidden contradictions behind vague language (include for any non-trivial input)Domain-specific agents (0..N):
Review the collected material for domains where specialized knowledge would reveal contradictions the default agents may miss. For each clearly warranted domain, spawn an additional general-purpose agent with model: "opus" and a tailored prompt. Avoid speculative spawning.
After all agents return:
Once the user has addressed all findings, use Write to save a summary covering original contradictions, user resolutions, and open items.
$ARGUMENTS
npx claudepluginhub alex-kopylov/zweihander --plugin dev-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.