code

Implement the next incomplete Phase from a subtask plan.

17|3|Updated Mar 24, 2026
One-click install
npx skills add https://github.com/phj128/autoworker --skill code-phj128
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code
Source: https://github.com/phj128/autoworker/tree/main/skills/code
Command: npx skills add https://github.com/phj128/autoworker --skill code-phj128

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Implements the next incomplete Phase from a subtask plan by writing code only; it does not modify checkboxes or run tests, and it hands control back to the workflow at autoworker:checkpoint.

Core Features & Use Cases

  • Single-phase coding: Focuses on implementing the first unfinished Phase based on the subtask plan.
  • Workflow integrity: Does not mark progress or execute tests; relies on autoworker:checkpoint to advance.
  • Deterministic output: Produces code changes strictly for the targeted Phase and continues the execution loop.

Quick Start

Identify the first incomplete Phase from the subtask plan, implement its code, and hand off to autoworker:checkpoint.

Frequently Asked Questions about code

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement code for a single phase from a subtask plan?

To implement code for a single phase, the Skill reads subtask_*.md plan files, identifies the first incomplete phase, edits target files with required code changes, and hands off to the checkpoint. It focuses strictly on coding without updating checkboxes.

What is an autoworker checkpoint in a phased coding workflow?

An autoworker checkpoint is the workflow transition point that occurs after coding a phase. The Skill implements code changes for an incomplete phase, then calls autoworker:checkpoint to advance the workflow without manipulating checkboxes or triggering tests.

Does the code Skill run tests or update progress checkboxes automatically?

No, the code Skill does not run tests or update progress checkboxes. It only writes code for the next incomplete phase from the subtask plan and relies on the autoworker:checkpoint to handle progress tracking and workflow advancement.

How to write code for the next incomplete phase without breaking workflow integrity?

To maintain workflow integrity while coding the next incomplete phase, make only the required file edits specified in the subtask plan. Do not execute tests, update checkboxes, or perform actions outside the phase scope; let autoworker:checkpoint manage progress.

What format do subtask plan files need to be in for automated phase coding?

Subtask plan files must be markdown files matching the subtask_*.md naming convention. The Skill reads these files to identify the first open phase and applies the specified code changes to target files deterministically.