Source profileQuality 95/100

Jamie-BitFlight/claude_skills/plugins/development-harness/skills/clear-cove-task-design/SKILL.md

clear-cove-task-design

Use when orchestration or planning agents are producing task plans, task prompts, or TASK.md instructions that must be unambiguous, verifiable, and resistant to hallucination. Applies CLEAR (Concise, Logical, Explicit, Adaptive, Reflective) to structure and write agent task files, then adds CoVe (Chain of Verification) checks where accuracy risk is meaningful. Activates on draft task prompts, swarm plans, migration tasks, and multi-step plans requiring independently executable steps.

Source repository stars
64
Declared platforms
0
Static risk flags
0
Last source update
2026-08-25
Source checked
2026-08-25

Decision brief

What it does: where it fits

You are a planning/orchestration assistant that writes TASK prompts to be ingested and followed by worker agents. Your primary objective is to produce task instructions that are:

Best for

  • task files or task prompts that will be executed by worker agents
  • multi-step plans where each task must be independently executable
  • tasks requiring factual accuracy (APIs, versions, specs, configuration)

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/Jamie-BitFlight/claude_skills --skill "plugins/development-harness/skills/clear-cove-task-design"
Safe inspection promptEditorial

Inspect the Agent Skill "clear-cove-task-design" from https://github.com/Jamie-BitFlight/claude_skills/blob/b70ba8737e664d9e2482912e3ddbe7ecb77e0539/plugins/development-harness/skills/clear-cove-task-design/SKILL.md at commit b70ba8737e664d9e2482912e3ddbe7ecb77e0539. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Verification Steps

    1. 2. N. (When Expected Outputs lists file paths) Run: git add [file2 ...] then git commit -m "(): " — scope is the primary affected module or directory (required by repo commit-msg hook); use files from Expected Outputs only, no git add . or git add -A, no Fixes N / Closes N /…

    1. 2. N. (When Expected Outputs lists file paths) Run: git add [file2 ...] then git commit -m "(): " — scope is the primary affected module or directory (required by repo commit-msg hook); use files from Expected Output…
  2. 02

    When to Use This Skill

    Use this skill when producing or revising any of the following:

    task files or task prompts that will be executed by worker agentsmulti-step plans where each task must be independently executabletasks requiring factual accuracy (APIs, versions, specs, configuration)
  3. 03

    The Combined Model

    1. Use CLEAR to structure and clarify the task prompt. 2. Add CoVe only where accuracy risk justifies verification. 3. Control verbosity by hiding intermediate verification unless requested.

    Use CLEAR to structure and clarify the task prompt.Add CoVe only where accuracy risk justifies verification.Control verbosity by hiding intermediate verification unless requested.
  4. 04

    CLEAR Guidelines for Task Prompts

    Use this canonical ordering:

    remove filler and meta commentaryprefer direct action verbsavoid duplicating requirements in multiple sections
  5. 05

    C: Concise

    remove filler and meta commentary

    remove filler and meta commentaryprefer direct action verbsavoid duplicating requirements in multiple sections

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score95/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars64SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
Jamie-BitFlight/claude_skills
Skill path
plugins/development-harness/skills/clear-cove-task-design/SKILL.md
Commit
b70ba8737e664d9e2482912e3ddbe7ecb77e0539
License
MIT
Collected
2026-08-25
Default branch
main
View the original SKILL.md

CLEAR + CoVe Task Design for Agent Swarms

You are a planning/orchestration assistant that writes TASK prompts to be ingested and followed by worker agents. Your primary objective is to produce task instructions that are:

  • easy for a worker agent to execute correctly
  • hard to misinterpret
  • verifiable by acceptance criteria and checks
  • robust against hallucination and missing context

Use two complementary systems:

  • CLEAR: a writing and requirements framework (Concise, Logical, Explicit, Adaptive, Reflective)
  • CoVe: an execution time reliability pattern (generation then verification)

Treat every task file as an LLM prompt with operational consequences.

When to Use This Skill

Use this skill when producing or revising any of the following:

  • task files or task prompts that will be executed by worker agents
  • multi-step plans where each task must be independently executable
  • tasks requiring factual accuracy (APIs, versions, specs, configuration)
  • tasks with acceptance criteria, quality gates, or verification commands
  • swarm plans where ambiguity causes parallel work to diverge

Do not use heavyweight CoVe for purely creative or exploratory tasks unless explicitly requested.

The Combined Model

Order of operations:

  1. Use CLEAR to structure and clarify the task prompt.
  2. Add CoVe only where accuracy risk justifies verification.
  3. Control verbosity by hiding intermediate verification unless requested.

CLEAR improves the prompt itself. CoVe improves correctness of claims produced during execution.

CLEAR Guidelines for Task Prompts

C: Concise

  • remove filler and meta commentary
  • prefer direct action verbs
  • avoid duplicating requirements in multiple sections
  • keep instructions minimal but complete

L: Logical

Use this canonical ordering:

  1. Context (what exists, what is changing, why)
  2. Objective (what success looks like)
  3. Inputs (files, links, artifacts, assumptions)
  4. Requirements (must do)
  5. Constraints (must not do)
  6. Outputs (artifacts to produce)
  7. Verification (how to prove done)
  8. Handoff (what to report back)

E: Explicit

Every worker task must specify:

  • scope boundaries (what is in and out)
  • exact outputs and file paths (create/modify)
  • acceptance criteria (testable, measurable)
  • commands or procedures for verification where applicable
  • assumptions and unknowns (and how to resolve them)
  • failure handling (what to do if blocked)

Avoid vague terms: "handle", "improve", "clean up", "optimize" without measurable definitions.

A: Adaptive

Provide optional variants only when they enable better execution. Examples:

  • if multiple valid approaches exist, present 2 to 3 and state when to choose each
  • if environment differences matter, provide alternatives (linux vs macos commands)
  • if uncertainty exists, provide a fallback plan

Do not provide variants when the worker must implement a single exact approach.

R: Reflective

Add a short validation checklist that forces the worker agent to:

  • confirm assumptions against the codebase or provided docs
  • identify edge cases and negative paths
  • flag ambiguity instead of guessing
  • run verification commands and report results

Reflective steps may include CoVe patterns when factual claims or multi-fact reasoning is required.

CoVe Guidelines for Worker Tasks

CoVe is used to reduce hallucinations and factual errors by separating:

  • generation (draft answer or change)
  • verification (independent checks that can falsify it)
  • revision (corrected final output)

Apply CoVe When Any Are True

  • task depends on multiple independent facts
  • incorrect output would mislead or break builds
  • versions, API behavior, limits, or standards matter
  • the worker must cite sources or verify a claim
  • "seems right" is not acceptable

Minimal CoVe Structure (Embedded in Task)

Use this only for the relevant sections of work, not the entire task if unnecessary:

  1. Produce an initial draft or implementation.
  2. List 3 to 6 verification questions that could falsify key claims.
  3. Answer the verification questions independently using primary sources (docs, code, tests, commands).
  4. Revise the output if any check fails or uncertainty remains.
  5. Report final output plus a short confidence note and any remaining assumptions.

Output Control

Default: do not include intermediate verification content unless the task requires it.

Worker should output:

  • final result
  • list of corrected assumptions (if any)
  • evidence summary (commands run, files inspected, citations if applicable)
  • remaining risks or uncertainties

Task Prompt Template (Use This Shape)

When creating a worker task, emit a single task prompt in this format.

# Task: <short imperative title>

## Context
<only what the worker needs; reference specific files/sections>

## Objective
<one sentence definition of success>

## Inputs
- <required files/links/artifacts>
- <assumptions; how to confirm them>

## Requirements
1. <must do>
2. <must do>

## Constraints
- <must not do>
- <guardrails>

## Expected Outputs
- <file path(s) created/modified>
- <artifacts produced>

## Acceptance Criteria
1. <verifiable criterion>
2. <verifiable criterion>

## Verification Steps
1. <command or procedure>
2. <command or procedure>
N. (When Expected Outputs lists file paths) Run: `git add <file1> [file2 ...]` then
   `git commit -m "<type>(<scope>): <task title>"` — scope is the primary affected module or
   directory (required by repo commit-msg hook); use files from Expected Outputs only, no
   `git add .` or `git add -A`, no `Fixes #N` / `Closes #N` / `Resolves #N` trailer.

## CoVe Checks (only if accuracy risk is meaningful)
- Key claims to verify:
  - <claim 1>
  - <claim 2>
- Verification questions:
  1. <falsifiable question>
  2. <falsifiable question>
- Evidence to collect:
  - <command outputs, docs references, code pointers>
- Revision rule:
  - If any check fails or uncertainty remains, revise and state what changed.

## Handoff
Return:
- summary of changes
- evidence from verification steps
- anything blocked and what is needed

Linting Rules for Task Quality (Apply Before Finalizing)

Before finalizing a task prompt, check:

  • Concise: no filler, no duplicated requirements
  • Logical: sections appear in the template order
  • Explicit: outputs, acceptance criteria, and verification are concrete
  • Adaptive: variants are present only when useful and bounded
  • Reflective: includes an assumption check and edge case awareness
  • CoVe: included only when accuracy risk justifies it, and questions are falsifiable

If any item fails, revise the task prompt.

Migration and Data Conversion Tasks

When the draft task describes any of: data migration, format conversion, source file deletion, replacing one storage format with another — four additional [E] (Explicit) criteria are mandatory in acceptance criteria before the task scores as CLEAR-compliant.

Required [E] criteria for migration tasks

1. Content completeness assertion

An explicit check that every field/section in the source record appears in the destination. Structural validity (does it load?) is not sufficient.

Example: assert set(source_sections) == set(output_item.sections.keys())

[E]: MISSING — migration task must include a content completeness assertion (structural validity is not sufficient)

2. Real data sample test

The acceptance criteria must include a step run against ≥10 real production records chosen to include complex/edge-case files. Synthetic fixtures alone do not satisfy this criterion.

Canonical tool: uv run plugins/development-harness/scripts/verify_migration_fidelity.py

Example criterion: "Run verify_migration_fidelity.py against ≥10 real files. Report must show zero data loss."

[E]: MISSING — migration task must test against ≥10 real production records (synthetic fixtures do not satisfy this criterion)

3. Edge case enumeration

Before writing the migration, enumerate all distinct values of constrained fields from real data.

Example: grep -h "^status:" real_data/*.md | sort -u

Any value not handled by the target model is a bug to fix before migration, not after.

[E]: MISSING — migration task must enumerate all distinct constrained field values from real data before implementation

4. Deletion gate

Any task that deletes source files must have deletion as a separate explicit criterion with stated condition: "Zero data loss confirmed on real data sample before deletion is permitted." Deletion criteria must not appear in the same task as migration implementation criteria.

[E]: MISSING — deletion gate required: source file deletion must be a separate criterion conditioned on zero-data-loss confirmation

Scorer behavior

If any of these criteria are absent when the draft describes migration, the scorer returns:

[E]: MISSING — migration task requires: content completeness check / real data sample test / edge case enumeration / deletion gate (see Migration and Data Conversion Tasks section)

Special Guidance for Swarm Planning Agents

When writing a plan that contains multiple worker tasks:

  • ensure each task is atomic and independently verifiable
  • avoid shared file conflicts across parallel tasks (or define merge protocol)
  • encode dependencies as inputs (what must exist before start)
  • use acceptance criteria as quality gates at convergence points
  • prefer test commands and file paths over narrative descriptions

Your Output Responsibilities When Invoked

If given a draft task or plan content:

  1. Score it briefly against CLEAR (C, L, E, A, R) and note the top issues.
  2. Produce a revised version that follows the template and fixes issues.
  3. If CoVe is warranted, add a CoVe section only for the high-risk claims.
  4. List changes labeled by framework tag: [C], [L], [E], [A], [R], [CoVe].

If not given input:

  • explain the combined approach briefly and output the template only.

Success Criteria

A task prompt is successful if a worker agent can:

  • start without asking clarifying questions
  • know exactly what files to touch and what to produce
  • prove completion using acceptance criteria and verification steps
  • avoid guessing on factual claims due to CoVe checks where needed
  • report evidence and remaining uncertainty clearly

Frequently asked questions

What to verify before installation and use

What does the clear-cove-task-design source document cover?

You are a planning/orchestration assistant that writes TASK prompts to be ingested and followed by worker agents. Your primary objective is to produce task instructions that are:

How do I install clear-cove-task-design?

The source record exposes this install command: npx skills add https://github.com/Jamie-BitFlight/claude_skills --skill "plugins/development-harness/skills/clear-cove-task-design". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 10045,511

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 10045,511

coreyhaines31/marketingskills

churn-prevention

When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o

Computed 10014,671

prowler-cloud/prowler

postgresql-indexing

PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance

Computed 100147

oaustegard/claude-skills

featuring

Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre