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

Integrate

skill-dan-cleary-fdestack-integrate · by Dan-Cleary

|

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

Install

$ agentstack add skill-dan-cleary-fdestack-integrate

✓ 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-dan-cleary-fdestack-integrate)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo 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 Integrate? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

/integrate

Build the production version. Cleanroom rebuild from the customer context files — never from POC code.

Step 0: Parse inputs

The customer name is the first argument. No optional flags — /integrate has one mode (production).

Set CUSTOMER_NAME.

Step 1: Check session marker

MARKER="/tmp/fdestack-session-$CUSTOMER_NAME"
if [ ! -f "$MARKER" ]; then echo "MARKER_MISSING=true"; fi
MARKER_TS=$(grep '^ts=' "$MARKER" 2>/dev/null | cut -d= -f2)
AGE=$(( $(date +%s) - ${MARKER_TS:-0} ))
[ "$AGE" -lt 43200 ] && [ -n "$MARKER_TS" ] && echo "MARKER_OK=true" || echo "MARKER_STALE_OR_MISSING=true"

If missing or stale: "Run /customer-context $CUSTOMER_NAME first." Stop.

Step 2: Verify prerequisites

SCOPE_COUNT=$(ls customers/$CUSTOMER_NAME/scope-*.md 2>/dev/null | wc -l | tr -d ' ')
POC_COUNT=$(ls -d customers/$CUSTOMER_NAME/poc 2>/dev/null | wc -l | tr -d ' ')
echo "SCOPE_COUNT=$SCOPE_COUNT POC_COUNT=$POC_COUNT"
  • SCOPE_COUNT=0 → REFUSE: "No /scope file. /integrate requires the scope's binary success criteria as its acceptance bar."
  • POC_COUNT=0 → WARN: "No POC found for $CUSTOMER_NAME. /integrate can run without one, but typically /poc proved feasibility first and wrote learnings back to stack.md and decisions.md. Confirm you want to proceed without that signal? (yes / let me run /poc first)"

Step 3: Hard rule — DO NOT READ THE POC DIRECTORY

This is the most important rule in this skill. Print it to the FDE so they know what's about to happen:

> /integrate is a cleanroom rebuild. I will NOT read customers/$CUSTOMER_NAME/poc/ > — not the code, not the README, not the demo script. Anything the POC taught > us must already be in: > • stack.md (technical facts about the customer's environment) > • decisions.md (design decisions and their rationale) > • value-frame.md (the value bar the production code must defend) > > If you find yourself wanting me to "just look at the POC for a sec," that's > a signal that /poc's learnings write-back step skipped something important. > Stop /integrate, finish the write-back, then restart.

This is enforced behaviorally, not by file-system permissions. You as the model must refuse to read any file under customers//poc/ for the duration of this skill. If the FDE pastes POC code into the conversation, acknowledge but do not adopt: "I see this, but per the /integrate contract I'm not going to copy from it. If there's a constraint or pattern here that should inform the production build, capture it in stack.md or decisions.md first, then we'll continue."

Step 4: Load cross-customer learnings

tail -10 "$HOME/.fdestack/learnings.jsonl" 2>/dev/null | jq -r '"[learning] " + .key + ": " + .insight' 2>/dev/null

Production-relevant learnings — auth quirks, rate limits, vendor docs gaps — should inform the build.

Step 5: Load context (everything EXCEPT poc/)

Read in this order:

  1. Latest customers//scope-*.md — success criteria. These are the acceptance tests.
  2. Latest customers//value-frame-*.md — the dollar bar production code must defend.
  3. customers//stack.md — the customer's actual tech, including anything /poc wrote back about constraints.
  4. customers//decisions.md — design decisions to inherit, with their rationale.
  5. customers//profile.md — audience and stakes.
  6. Latest customers//discovery-*.md — for stakeholder context (who reviews this, who runs it post-handoff).

Do not list customers//poc/. Do not Read any file under it. Treat the directory as not existing for the purposes of this skill.

Step 6: Production defaults

State the defaults explicitly so the FDE can interrupt:

Production defaults for $CUSTOMER_NAME:
  • Match customer's stack patterns (see stack.md — auth, frameworks, conventions)
  • Real error handling (retry where transient, fail loud where unexpected)
  • Real logging at decision points (their stack.md should name the logger)
  • Config via env vars or their existing config system — no hardcoded values
  • Tests at acceptance level (the binary criteria from scope.md become test cases)
  • A README that says how it deploys, how it's monitored, who owns it post-handoff

Continue? (yes / let me redirect)

Step 7: Build

Build the production implementation. The acceptance tests from scope.md are the bar. Decisions inherited from decisions.md are the architecture.

When you would normally have said "let me check how the POC handled X," instead:

  • Look in stack.md and decisions.md for the relevant write-back.
  • If it's not there, surface it to the FDE: "stack.md / decisions.md don't mention how the customer's auth proxy handles long-lived tokens. The POC may have figured this out. Can you confirm / write it back to stack.md before we continue?"

This is how the cleanroom rebuild stays honest. Missing write-backs become visible the moment they bite.

Step 8: Write the integration README

Build target: customers//integrate/README.md (or wherever your shipped artifact lives — under the customer dir for traceability):

# Production: 
**Date:** 
**FDE:** 
**Source scope:** 
**Source decisions:** 

## What this does

## How to deploy

## How to monitor

## How to roll back

## Acceptance tests (from scope.md success criteria)
- [ ]  — verified by 
- [ ]  — verified by 

## Decisions inherited
- 
- 

## Known limitations / future work

Step 9: Commit

git add "customers/$CUSTOMER_NAME/"
git commit -m "integrate: $CUSTOMER_NAME "

Step 10: Summary

Production build complete.
  Location: customers//integrate/
  Acceptance tests: 
  Decisions inherited: 
  POC code consulted: ZERO (cleanroom rebuild)

If anything from the POC didn't make it into the build, it's because the
write-back in /poc Step 9 didn't capture it. That's a /poc gap, not a
/integrate gap — and it's visible now, which is the whole point.

Next:
  - Verify acceptance tests pass against scope.md criteria
  - Hand off per the README ownership line

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.