Install
$ agentstack add skill-razaib-khan-forgeweave-code-builder ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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
plannerskill 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
| Input | Type | Required | Description | |---|---|---|---| | plan | object | Yes | The execution plan from the planner skill | | existing_code | string | No | Description of existing codebase structure | | standards | array | No | Coding standards to follow (e.g., TypeScript strict, PEP 8) |
Expected Outputs
| Output | Description | |---|---| | New or modified files | Working code implementing the plan | | Folder structure | Organized module layout | | Architecture notes | Key decisions made during implementation |
Exact Workflow Steps
- Review the plan and understand the architecture
- Create folder structure matching project conventions
- Implement each module following existing patterns
- Add type annotations and documentation as code is written
- Verify the code compiles or passes syntax checks
- 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 Condition | Response | |---|---| | Code doesn't compile | Fix type errors and re-verify | | Existing tests fail | Identify root cause and fix before continuing | | Architecture decision contradicts plan | Flag to planner for resolution |
References
| Reference | Path | |---|---| | Planner skill | ../planner/SKILL.md | | Test Generator skill | ../test-generator/SKILL.md |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Razaib-khan
- Source: Razaib-khan/ForgeWeave
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.