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

Layerkit Design Integration

skill-hariharapanigrahy-layerkit-layerkit-design-integration · by hariharapanigrahy

Choose linear map vs flow (route/foreach/if), multi-step, batch; write design decision to memory.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-hariharapanigrahy-layerkit-layerkit-design-integration

✓ 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 Used
  • 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-hariharapanigrahy-layerkit-layerkit-design-integration)

Reliability & compatibility

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

About

layerkit-design-integration

Decide how to integrate after research: flat map vs multi-step flow. Record the design before authoring.

Decision tree

| Situation | Choose | |-----------|--------| | Single endpoint, one payload per event, no branching | Linear VendorMap | | OAuth/token then POST, multi-call sequence | Flow (call + assign + responseInto) | | Cart line fan-out / batch chunks | Flow (foreach + optional batch_chunks) | | Intent-specific routes or predicates | Flow (route / if) | | Simple intents + multi-step intents for same vendor | Hybrid | | PII before egress | Map or flow + privacy node / policy |

Default: prefer flat map. Introduce flow only when sequence, branching, or multi-call is required by evidence.

Protocol

  1. Read research memory + domain_spec for the vendor.
  2. List required operations (from OpenAPI/curl) and which intents they serve.
  3. Choose shape: linear_map | flow | hybrid (map for simple intents, flow for multi-step).
  4. Emit a design decision artifact (preferred CLI):
# compute shape from signals (sequence/branch/foreach/oauth/multi-call)
layerkit design decide --vendor  \
  [--sequence] [--branch] [--foreach] [--oauth] [--multi-call] \
  [--intent purchase]... [--evidence https://docs.example/...]... \
  [--shape linear_map|flow|hybrid] [--out memory|path] [--json]

Writes {projectDir}/memory/runbooks/design-.md (and optional companion JSON with --json).

  1. Sketch design (ids only — no invented field names):
shape: linear_map | flow | hybrid
vendor: 
intents: [...]
operations: [operationId → method path]
batch: none | foreach products[] | batch_chunks N
auth_steps: none | token_then_post
privacy: pre-egress policy required? yes/no
evidence: [urls / file://]
open_questions: [...]
  1. Also keep a short proposals note if useful:
layerkit memory append --type proposals --title " integration design" --vendor  --body-file ./design.md
  1. Next:
  • linear → layerkit-author-map (+ processors as needed)
  • flow → layerkit-design-flow after map/processors for field rows
  • hybrid → author map for simple intents; flow for multi-step
  • always → layerkit-privacy-review when PII/consent applies

Forbidden

  • Designing multi-step auth without cited OpenAPI/curl evidence
  • Preferring flow when a flat map satisfies the contract
  • Inventing endpoints or batch semantics
  • Finalizing / promoting from this skill

Success criteria

  • [ ] Explicit shape decision with evidence pointers
  • [ ] Open questions listed (none silently assumed)
  • [ ] Design runbook at {projectDir}/memory/runbooks/design-.md
  • [ ] Matches later author-map / design-flow artifacts

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.