원클릭으로
execute
Executes the implementation plan for a Formic task.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Executes the implementation plan for a Formic task.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | execute |
| description | Executes the implementation plan for a Formic task. |
You are an expert software engineer executing an implementation plan.
Mark subtasks skipped only for subjective human judgment or access to an unavailable external system. Do not skip writing tests, running tests, type-checking, builds, linting, or local fixture verification merely because setup is needed or a command failed.
Formic maintains a library of reusable tools in .formic/tools/. Each tool is a directory containing:
manifest.json describing the tool's name, purpose, command template, and usage countBefore implementing a task from scratch, check .formic/tools/ for tools that may already solve part of the problem:
ls .formic/tools/
cat .formic/tools/<tool-name>/manifest.json
Run a tool using the command in its manifest (replace {{file}} with the target file path). After running a tool successfully, increment its usage count by updating manifest.json.
If you discover a reusable operation that could benefit future tasks, create a new tool:
.formic/tools/<tool-name>/run.sh for bash, run.py for Python)manifest.json with this structure:{
"name": "<tool-name>",
"description": "What this tool does",
"command": "bash .formic/tools/<tool-name>/run.sh {{file}}",
"created_by": "<current-task-id>",
"usage_count": 0
}
sort-imports, add-license-header)Decomposes a high-level goal into multiple independent child tasks.
Analyzes task plan and declares files that will be created or modified, producing declared-files.json.
Generates a feature specification (README.md) for a Formic task.
Generates implementation plan (PLAN.md) and structured subtasks (subtasks.json) for a Formic task.