arn-assessing
This skill should be used when the user says "assessing", "arness assessing", "assess", "assess codebase", "technical review", "codebase assessment", "find…
This skill should be used when the user says "taskify", "create task list", "create tasks", "convert plan to tasks", "generate tasks from plan", "create tasks from plan", "turn plan into tasks", "arness code taskify", or wants to convert a structured project plan's TASKS.md into
$ npx -y skills add AppsVortex/arness --skill arn-code-taskify --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/arn-code-taskifyContext preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user says "taskify", "create task list", "create tasks", "convert plan to tasks", "generate tasks from plan", "create tasks from plan", "turn plan into tasks", "arness code taskify", or wants to convert a structured project plan's TASKS.md into
name: arn-code-taskify description: >- This skill should be used when the user says "taskify", "create task list", "create tasks", "convert plan to tasks", "generate tasks from plan", "create tasks from plan", "turn plan into tasks", "arness code taskify", or wants to convert a structured project plan's TASKS.md into an executable Claude Code task list with proper dependency management. version: 1.0.0
Convert a project's TASKS.md into a Claude Code task list with dependency management. Reads the structured task definitions created by `arn-code-save-plan`, creates Claude Code tasks via `TaskCreate`, and wires up the dependency graph via `TaskUpdate`.
This skill does NOT execute tasks or assign them to agents — it only creates the task list. Execution happens after the task list is created, either manually or through Claude Code's task system.
Read the project's CLAUDE.md and look for a `## Arness` section. Extract:
**If `## Arness` is not found:** inform the user: "Arness is not configured for this project yet. Run `/arn-planning` to get started — it will set everything up automatically." Do not proceed.
**Deferred Task List Setup:**
Check for **Task list ID** in `## Arness` config. If present: verify `CLAUDE_CODE_TASK_LIST_ID` environment variable is set and matches. If not set or mismatched, warn: "Task list ID is configured as `<id>` in `## Arness` but `CLAUDE_CODE_TASK_LIST_ID` is not set in the current environment. Tasks may not persist across sessions. Verify `.claude/settings.json` contains the correct env setting."
If absent:
Ask (using `AskUserQuestion`):
**"Persistent task lists are not configured. Would you like to enable them? (Recommended — tasks survive across sessions)"**
1. **Yes** (Recommended) — Auto-generate ID from project directory name 2. **Yes, with custom ID** — Specify the task list ID 3. **No** — Keep tasks session-scoped
If Yes: derive ID (slugify project directory name or use custom ID), write to `.claude/settings.json` (create if needed, preserve existing env vars), add `Task list ID` to `## Arness` config. Inform: "Persistent task list configured."
If No: proceed without persistence. Inform (once): "Tasks will be session-scoped. Enable persistence anytime with `/arn-code-taskify`."
Ask the user for `PROJECT_NAME` if not provided in the conversation.
Read `<plans-dir>/<PROJECT_NAME>/TASKS.md`.
If TASKS.md does not exist:
---
Extract from each task entry in TASKS.md:
| Field | Source | Example | |-------|--------|---------| | Task number | `### Task N:` heading | `1` | | Title | Text after task number | `Phase 1 Implementation - Infrastructure` | | Plan file | `**Plan:**` line | `plans/PHASE_1_PLAN.md (Implementation section)` | | Dependencies | `**Dependencies:**` line | `Task 1, Task 3` or `None` | | Description | Body text after metadata lines | Full task instructions |
Build a task map:
{ taskNumber → { title, planFile, dependencies[], description } }Validate the parsed data:
If validation fails, report the issues and:
Ask (using `AskUserQuestion`):
**"Validation issues found in TASKS.md. How would you like to proceed?"**
Options: 1. **Proceed** -- Skip invalid entries and create the remaining tasks 2. **Abort** -- Stop and fix TASKS.md before retrying
---
For each task in sequential order (Task 1 first, Task 2 next, etc.), call `TaskCreate` with:
subject: "Task N: <Title>" description: | Project: <PROJECT_NAME> Project folder: <plans-dir>/<PROJECT_NAME> Plan: <plan file path> <Full task description from TASKS.md> activeForm: "Executing Task N: <Title>"
Build an ID map as tasks are created:
{ taskNumber → claudeTaskId }Tasks MUST be created in sequential order. Claude Code assigns task IDs sequentially, and the ID map is used in the next step to wire up dependencies.
---
After ALL tasks are created, iterate through the task map and set up dependency relationships:
TaskUpdate(taskId: "<claude_task_id>", addBlockedBy: ["<dep_id_1>", "<dep_id_2>"])
Example mapping:
TASKS.md: "Task 3 depends on Task 1" ID map: Task 1 → claude_id "5", Task 3 → claude_id "7" Result: TaskUpdate(taskId: "7", addBlockedBy: ["5"])
---
Call `TaskList` and present the results to the user:
If any discrepancy is found between the created task list and TASKS.md, warn the user and explain what differs.
Example output:
## Task List Created: <PROJECT_NAME> Created N tasks from TASKS.md. ### Ready to execute (no blockers): - Task 1: Phase 1 Implementation - Infrastructure - Task 2: Phase 2 Implementation - API ### Blocked: - Task 3: Phase 1 Testing - Infrastructure (waiting on: Task 1) - Task 4: Phase 2 Testing - API (waiting on: Task 2, Task 3) Dependency graph matches TASKS.md. To start execution: - `/arn-code-
Arness — H not required. Structured AI workflows for Claude Code. From first idea to production deploy. Seven entry commands. That's all you need to remember.
This skill should be used when the user says "assessing", "arness assessing", "assess", "assess codebase", "technical review", "codebase assessment", "find…
This skill should be used when the user says "arness code assess", "arn-code-assess", "assess codebase", "technical review", "codebase assessment", "find…
This skill should be used when the user says "fix CVEs", "patch vulnerabilities", "apply security patches", "resolve security advisories", "batch CVE fix",…
This skill should be used when the user says "scan for CVEs", "CVE scan", "check for vulnerabilities", "find vulnerabilities", "check security advisories",…
This skill should be used when the user says "batch implement", "implement all", "batch execution", "implement all features", "parallel implement", "implement…
This skill should be used when the user says "batch merge", "merge batch", "arness batch merge", "arn-code-batch-merge", "merge all PRs", "merge batch PRs",…