Install
openclaw skills install simple-codePlan and build small, readable coding projects in three reliable modes: start, continue, and review. Think first, make a short plan, then delegate implementation/review/testing/bug-fixing/documentation/step-tracking to a coding sub-agent. Prefer the model openai-codex/gpt-5.3-codex by default. Use when the user asks for simple code, a small project, a self-contained utility, straightforward feature work, or a practical code review that should stay easy to read and easy to manage.
openclaw skills install simple-codeUse this skill for small coding work where readability, simplicity, and reliable progress matter more than cleverness.
This skill supports three explicit modes:
start — create a minimal new project and get the first working version runningcontinue — continue an existing project with new functionality, changed behavior, fixes, or focused improvementsreview — review the current codebase, a current commit, or current changes, then optionally make targeted follow-up improvementsFor all three modes, the default expectation is the same:
.steps/When the user wants to invoke this skill explicitly, they should be able to do it reliably by appending a mode option and a concrete request.
Preferred explicit trigger patterns:
simple-code start: <request>simple-code continue: <request>simple-code review: <request>Also accept slash-command style requests with appended options/details, for example:
/simple-code start build a tiny local markdown preview tool/simple-code continue add CSV export and improve error handling/simple-code review review current project and fix obvious structural issues/simple-code review current commit only/simple-code review working tree changes and patch if neededWhen the mode is explicit, follow it.
When the mode is not explicit, infer it from the task:
startcontinuereviewIf the user includes extra scope details, use them. For example:
If the request is still ambiguous after that, ask one short clarifying question.
start, continue, or review.agent_code/<project-name> unless the user explicitly points to another project path..steps/ folder..gitignore if needed so .steps/ and everything under it are ignored.openai-codex/gpt-5.3-codex by default unless the user asks for something else..steps/ tracking.Use start when creating a new project or bootstrap implementation.
Goals:
Workflow for start:
agent_code/<project-name>..steps/ inside it..gitignore early and ignore .steps/ from the start.Use continue when extending or improving an existing project.
Goals:
Workflow for continue:
Use review when the task is to inspect, critique, validate, or audit code, commits, or changes.
Possible review scopes include:
If the user specifies a scope, use it. If not, choose the most sensible current scope and state it clearly.
Goals:
Workflow for review:
For any mode, before finishing:
For project-like requests, create or use this structure by default:
agent_code/<project-name>/agent_code/<project-name>/.steps/CMakeLists.txt for C++.gitignore early so .steps/ is ignored before commits startUse .steps/ to leave concise tracking notes.
When work results in a commit, create a note named:
.steps/<YYYYMMDD-HHMM>-<abbr>-<commit-hash>.mdWhen work ends without a commit, create a note named:
.steps/<YYYYMMDD-HHMM>-<abbr>.mdEach .steps note should stay short and include only:
For review tasks, mention the review scope in the outcome.
.steps/ to .gitignore before the first commit in a new project when possible.When reporting back after work completion:
start, continue, or review