Install
$ agentstack add skill-antifragiletech-antifragile-claude-code-add-task ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Create Draft Task File
Role
Your role is to create a draft task file that exactly matches the user's request.
Goal
Create a task file in .specs/tasks/draft/ with:
- Clear, action-oriented title (verb + specific description)
- Appropriate type classification (feature/bug/refactor/test/docs/chore/ci)
- Correct dependencies if any
- Useful description preserving user intent
- Correct file name
Input
- User Input: The task description/title provided by the user (passed as argument)
- Target Directory: Default is
.specs/tasks/draft/
Instructions
1. Ensure Directory Structure
Run the folder creation script to create task directories and configure gitignore:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/create-folders.sh
This creates:
.specs/tasks/draft/- New tasks awaiting analysis.specs/tasks/todo/- Tasks ready to implement.specs/tasks/in-progress/- Currently being worked on.specs/tasks/done/- Completed tasks.specs/scratchpad/- Temporary working files (gitignored)
2. Analyze Input
- Parse the user's request:
- Extract the core task objective
- Identify implied type (bug, feature, task)
- List of task files that this task depends on
- Clarify if ambiguous (only if truly unclear):
- Is this a bug fix or new feature?
- Any related tasks or dependencies? (if not proided, then assume none)
3. Structure the Task
- Create action-oriented title:
- Start with verb: Add, Fix, Update, Implement, Remove, Refactor
- Be specific but concise
- Examples:
- "Add validation to login form"
- "Fix null pointer in user service"
- "Implement caching for API responses"
- Determine type:
| Type | Use When | |------|----------| | feature | New functionality or capability | | bug | Something is broken or not working correctly | | refactor | Code restructuring without changing behavior | | test | Adding or updating tests | | docs | Documentation changes only | | chore | Maintenance tasks, dependency updates | | ci | CI/CD configuration changes |
4. Generate File Name
- Create short name from the task title:
- Lowercase the title
- Replace spaces with hyphens
- Remove special characters
- Keep it concise (3-5 words max)
- Example: "Add validation to login form" ->
add-validation-login-form
- Form file name:
..md
- Examples:
add-validation-login-form.feature.mdfix-null-pointer-user-service.bug.mdrestructure-auth-module.refactor.mdadd-unit-tests-api.test.mdupdate-readme.docs.mdupgrade-dependencies.chore.mdadd-github-actions.ci.md
- Verify uniqueness: Check
.specs/tasks/draft/,.specs/tasks/todo/,.specs/tasks/in-progress/, and.specs/tasks/done/for existing files with same name
5. Create Task File
Use Write tool to create .specs/tasks/todo/..md:
---
title:
depends_on:
---
## Initial User Prompt
{EXACT user input as provided}
## Description
// Will be filled in future stages by business analyst
Constraints
- Do NOT invoke the plan skill - the workflow handles subsequent phases
- Do NOT create files outside
.specs/tasks/draft/ - Do NOT modify existing task files
- Do NOT write description, only put
// ...placeholder as specified in the task file. - Do NOT write depends_on section if no dependencies are provided.
Expected Output
Return to the orchestrator:
- Task file path: Full path to created file (e.g.,
.specs/tasks/todo/add-validation-login-form.feature.md) - Generated title: The action-oriented title created
- Issue type:
task,bug, orfeature
Format:
Created task file: .specs/tasks/draft/..md
Title:
Type:
Depends on:
Success Criteria
- [ ] Directories
.specs/tasks/draft/,.specs/tasks/todo/,.specs/tasks/in-progress/,.specs/tasks/done/exist - [ ] Task file created in
.specs/tasks/draft/with correct naming convention (..md) - [ ] File name is unique across all status folders (no overwriting existing files)
- [ ] Depends on section is correct if dependencies are provided
- [ ] Title starts with action verb (Add, Fix, Implement, Update, Remove, Refactor)
- [ ] Type is correctly classified and reflected in file extension (
.feature.md,.bug.md,.refactor.md,.test.md,.docs.md,.chore.md,.ci.md) - [ ] Original user input preserved in "Initial User Prompt" section
- [ ] Description is empty placeholder
// Will be filled in future stages by business analyst
Examples
Test task (.specs/tasks/draft/add-unit-tests-auth.test.md):
---
title: Add unit tests for auth module
---
## Initial User Prompt
add tests for auth
## Description
// Will be filled in future stages by business analyst
Bug with context (.specs/tasks/draft/fix-login-timeout.bug.md):
---
title: Fix login timeout on slow connections
---
## Initial User Prompt
users getting 504 errors on slow wifi
## Description
// Will be filled in future stages by business analyst
Feature request (.specs/tasks/draft/implement-dark-mode.feature.md):
---
title: Implement dark mode toggle
---
## Initial User Prompt
add dark mode to settings page
## Description
// Will be filled in future stages by business analyst
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AntifragileTech
- Source: AntifragileTech/antifragile-claude-code
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.