Install
openclaw skills install axodus-implementation-plannerTurn a feature idea into a concrete technical implementation plan.
openclaw skills install axodus-implementation-plannerConvert a feature idea into a concrete technical execution plan (architecture, modules, interfaces, validations, and rollout).
feature_description (required, string): what to build and why.constraints (optional, string[]): non-negotiables (security, budget, tooling, timeline).environment (optional, object): runtime (OS, container), deploy targets, CI.existing_system (optional, string): relevant current architecture and boundaries.Structured plan (example schema):
overview: "<1 paragraph>"
modules:
- name: "<module>"
responsibility: "<what it owns>"
interfaces: ["<api/events/files>"]
data_flow:
inputs: ["..."]
outputs: ["..."]
validation:
unit: ["..."]
integration: ["..."]
rollout:
guardrails: ["..."]
open_questions: ["..."]
Feature: “Add webhook ingestion with idempotency and audit logs.†Output (excerpt):
modules:
- name: "webhook-controller"
responsibility: "request validation + signature checks"
- name: "event-store"
responsibility: "persist raw payload + processing status"
validation:
integration: ["replay same event id results in no duplicate side effects"]