Pipebuilder
Skill agentpipe/pipebuilder
Build, inspect, verify, and maintain PipeBuilder PipeSpaces and PipeBuilder-managed Agent Skills. Use when creating or editing a Skill, changing pipespace.json, resolving Skill Providers or generated-artifact drift, running PipeBuilder commands, or updating the installed PipeBuilder CLI.From its SKILL.md
npx -y skills add agentpipe/pipebuilderAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 26 days oldThe repository was created 26 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 2 stars2 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.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.3 KB, 895 tokens by cl100k_base, as published. Nobody here has run it
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 <skill-root>/pipebuilder.py explain <space> --format json
Use the report and .pipebuilder/lock.json to distinguish:
.pipebuilder/skills/<name>/: 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 <skill-root>/pipebuilder.py check . --format json
python3 <skill-root>/pipebuilder.py explain . --format json
python3 <skill-root>/pipebuilder.py build . --dry-run --require-no-post-commands --format json
python3 <skill-root>/pipebuilder.py build . --require-no-post-commands --format json
python3 <skill-root>/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.
--require-no-post-commands is the default Agent-safe build mode: it fails
before the first write if any selected Provider declares a post command. If it
reports PB018, inspect the commands in explain; run ordinary build only
after their executable, arguments, working directory, and side effects are
approved. Do not treat the flag as a way to silently skip required commands.
If generated directories are protected by the host sandbox, request the
narrowest persistent permission for the exact PipeBuilder safe-build command
or installed pipebuilder executable. Never request a blanket Python, shell,
workspace-write, or approval-bypass rule. Keep clean separately approved
because it deletes lock-proven outputs. See
references/build-permissions.md for the
cross-Agent permission SOP.
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-name>/SKILL.mdwith a matching lowercase kebab-casenameand adescriptionthat states both what it does and when to use it. - Put deterministic executables in
scripts/, detailed material inreferences/, and templates or resources inassets/. - 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 <provider-root>/<skill-name>
PipeBuilder verification remains the final workspace gate.
Update the installed Skill
Preview and then synchronize the installed Skill directory from the latest GitHub Release:
python3 <skill-root>/scripts/update.py --dry-run
python3 <skill-root>/scripts/update.py
Use --tag vX.Y.Z to pin an update to a release tag. The updater validates the
ZIP checksum and package manifest, restricts content to the portable Skill
directories, and then adds, replaces, or removes managed files as one update.
The package recursively includes agents/, scripts/, references/,
assets/, and .pipe-agents/; adding a resource there does not require an
updater file-list change.
What ships with it: 68 files
1484.9 KB alongside SKILL.md, 26 of them executable
.pipe-agents/
docs/
- assets/pipebuilder-overview.jpg398.1 KB
- assets/pipebuilder-pain-points.jpg531.7 KB
- pipebuilder-agent-adapters.md20.8 KB
- pipebuilder-architecture-proposal.md34.0 KB
- pipebuilder-implementation-iterations.md5.7 KB
- pipebuilder-skill-fixture-catalog.md21.7 KB
- pipebuilder-space-json-spec.md26.3 KB
- pipebuilder-test-architecture.md35.2 KB
- pipebuilder-tharness-migration-audit.md2.6 KB
- README.md2.2 KB
examples/
- all-agents-golden/expected/files/AGENTS.md1.0 KB
- all-agents-golden/expected/files/workspace-rule.md799 B
- all-agents-golden/expected/managed-targets.json1.0 KB
- all-agents-golden/projects/application/README.md99 B
- all-agents-golden/README.md1014 B
- all-agents-golden/space/golden-space.code-workspace124 B
- all-agents-golden/space/.pipebuilder/agents/claude-code/.claude/hooks/probe.pyruns34 B
- all-agents-golden/space/.pipebuilder/agents/claude-code/CLAUDE.md29 B
- all-agents-golden/space/.pipebuilder/agents/claude-code/.claude/settings.json109 B
- all-agents-golden/space/.pipebuilder/agents/claude-code/.mcp.json133 B
- all-agents-golden/space/.pipebuilder/agents/codebuddy/.codebuddy/commands/space-check.md31 B
- all-agents-golden/space/.pipebuilder/agents/codex/AGENTS.md28 B
- all-agents-golden/space/.pipebuilder/agents/codex/.codex/config.toml152 B
- all-agents-golden/space/.pipebuilder/agents/cursor/.cursor/rules/space.mdc90 B
- all-agents-golden/space/pipespace.json298 B
- multi-pipeline-project/pipespaces/bugfix-review/bugfix-review.code-workspace147 B
- multi-pipeline-project/pipespaces/bugfix-review/pipespace.json324 B
- multi-pipeline-project/pipespaces/feature-development/feature-development.code-workspace147 B
- multi-pipeline-project/pipespaces/feature-development/pipespace.json333 B
- multi-pipeline-project/project/README.md170 B
- multi-pipeline-project/README.md1.8 KB
- CHANGELOG.md523 B
- .gitattributes252 B
- .gitignore71 B
- LICENSE1.0 KB
- pipebuilder.code-workspace61 B
- pipebuilder.pyruns161.7 KB
- README.md17.9 KB
28 more files not listed here. See all 68 in the repository.