Install
$ agentstack add skill-agentpipe-pipebuilder-pipebuilder ✓ 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
PipeBuilder
pipebuilder.py in this Skill directory is the complete standalone CLI. The Skill provides Agent guidance; the Python file remains usable without an Agent.
Locate the inputs
Before changing a PipeSpace, run:
python3 /pipebuilder.py explain --format json
Use the report and .pipebuilder/lock.json to distinguish:
.pipebuilder/skills//: PipeSpace-local source, highest priority.pipespace.json.skillProviders[]: shared folder or Git Provider source..agents/skills/,.cursor/skills/,.codebuddy/skills/,
.claude/skills/, AGENTS.md, and .pipebuilder/lock.json: Builder-owned outputs; do not edit them directly.
Same-name Skills shadow lower-priority candidates; their contents are not merged.
Build and verify
Run the following sequence from the target PipeSpace:
python3 /pipebuilder.py check . --format json
python3 /pipebuilder.py explain . --format json
python3 /pipebuilder.py build . --dry-run --format json
python3 /pipebuilder.py build . --format json
python3 /pipebuilder.py verify . --format json
Stop if check or the dry run fails. A build is complete only when verify reports no input drift, digest drift, or orphaned output.
Use clean to remove generated files proven by the lock. Never recursively delete an Agent configuration directory.
For a Git Provider without network access, use build . --offline; this requires a matching lock and immutable cache.
Create or edit a Skill
- Find the Provider source with
explain; never edit an installed output. - Keep one coherent responsibility per Skill.
- Create
/SKILL.mdwith a matching lowercase kebab-casename
and a description that states both what it does and when to use it.
- Put deterministic executables in
scripts/, detailed material in
references/, and templates or resources in assets/.
- Select the Skill explicitly in
pipespace.json.skills[]or through
intentional tag matching.
- Run the complete build and verification sequence.
Test at least three prompts that should trigger the Skill, three adjacent prompts that should not, one successful workflow, and one failure/recovery path. If skills-ref is installed, also run:
skills-ref validate /
PipeBuilder verification remains the final workspace gate.
Update the installed Skill
Preview and then replace all three installed files from the latest GitHub Release:
python3 /scripts/update.py --dry-run
python3 /scripts/update.py
Use --tag vX.Y.Z to pin an update to a release tag. The updater validates the ZIP and its exact three-file structure before replacing SKILL.md, pipebuilder.py, and scripts/update.py.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: agentpipe
- Source: agentpipe/pipebuilder
- 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.