Install
openclaw skills install @mzfshark/axodus-code-generationGenerate production-ready code aligned to repo conventions and constraints.
openclaw skills install @mzfshark/axodus-code-generationGenerate production-ready code (TypeScript/JavaScript/Python) that matches the repo’s conventions, is testable, and is safe to run.
spec (required, string|object): functional requirements + acceptance criteria.language (required, enum: ts|js|py).targets (optional, string[]): files/modules to create or modify.constraints (optional, string[]): security/perf/compat requirements.test_expectations (optional, string): tests to add/run.files_changed: list of pathssummary: what changedvalidation_commands: ordered commands to runnotes: any assumptions or follow-upseval, runtime compilation) unless explicitly required and sandboxed.Input:
language: tsspec: “Add parseUserId(input) that rejects non-UUID values.â€Output (excerpt):
files_changed: ["src/utils/ids.ts", "src/utils/ids.test.ts"]validation_commands: ["pnpm test", "pnpm lint"]