Install
$ agentstack add skill-hariharapanigrahy-layerkit-layerkit-design-integration ✓ 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 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.
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
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
- Read research memory + domain_spec for the vendor.
- List required operations (from OpenAPI/curl) and which intents they serve.
- Choose shape:
linear_map|flow|hybrid(map for simple intents, flow for multi-step). - 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).
- 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: [...]
- Also keep a short proposals note if useful:
layerkit memory append --type proposals --title " integration design" --vendor --body-file ./design.md
- Next:
- linear →
layerkit-author-map(+ processors as needed) - flow →
layerkit-design-flowafter map/processors for field rows - hybrid → author map for simple intents; flow for multi-step
- always →
layerkit-privacy-reviewwhen 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.
- Author: hariharapanigrahy
- Source: hariharapanigrahy/layerkit
- 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.