AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Pipebuilder

skill-agentpipe-pipebuilder-pipebuilder · by agentpipe

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.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-agentpipe-pipebuilder-pipebuilder

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-agentpipe-pipebuilder-pipebuilder)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
23d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Pipebuilder? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. Find the Provider source with explain; never edit an installed output.
  2. Keep one coherent responsibility per Skill.
  3. Create /SKILL.md with a matching lowercase kebab-case name

and a description that states both what it does and when to use it.

  1. Put deterministic executables in scripts/, detailed material in

references/, and templates or resources in assets/.

  1. Select the Skill explicitly in pipespace.json.skills[] or through

intentional tag matching.

  1. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.