agentsclimarketplace

Code builder

Skill Razaib-khan/ForgeWeave/src/forgeweave/templates/claude/.claude/skills/code-builder

Translates plans into working code structures with architecture decisions, folder layout, and implementation strategyFrom its SKILL.md

Install
npx -y skills add Razaib-khan/ForgeWeave --skill code-builder

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.5 KB, 491 tokens by cl100k_base, as published. Nobody here has run it

Code Builder

Purpose

Take a structured plan and produce working, well-organized code. Makes architecture decisions (framework choice, folder structure, module boundaries), generates the code, and verifies it compiles or passes basic checks.

When to Use

  • A planner skill has produced an execution plan
  • The user asks to "implement" or "build" a feature from requirements
  • Scaffolding a new module, component, or service
  • Translating architecture decisions into concrete code

When Not to Use

  • The code change is a simple rename or refactor — use refactor-engine
  • Only tests are needed — use test-generator
  • The task is debugging an existing issue — use debugger

Inputs

InputTypeRequiredDescription
planobjectYesThe execution plan from the planner skill
existing_codestringNoDescription of existing codebase structure
standardsarrayNoCoding standards to follow (e.g., TypeScript strict, PEP 8)

Expected Outputs

OutputDescription
New or modified filesWorking code implementing the plan
Folder structureOrganized module layout
Architecture notesKey decisions made during implementation

Exact Workflow Steps

  1. Review the plan and understand the architecture
  2. Create folder structure matching project conventions
  3. Implement each module following existing patterns
  4. Add type annotations and documentation as code is written
  5. Verify the code compiles or passes syntax checks
  6. Run existing tests to confirm no regressions

Required Checks

  • Code compiles without errors
  • Existing tests still pass
  • Code follows project conventions (naming, imports, formatting)
  • New exports are properly typed

Failure Modes

Failure ConditionResponse
Code doesn't compileFix type errors and re-verify
Existing tests failIdentify root cause and fix before continuing
Architecture decision contradicts planFlag to planner for resolution

References

ReferencePath
Planner skill../planner/SKILL.md
Test Generator skill../test-generator/SKILL.md

What ships with it: 2 files

2.6 KB alongside SKILL.md, 1 of them executable

references/

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.