Forge integrations
Skill is-bo/fullstack-forge-skill/.cursor/skills/forge-integrations
Audit outbound and inbound integrations for authentication, validation, failure isolation, drift, and replay safety. Activate automatically for third-party apis, webhooks, sdks, and service-to-service calls when that concern is relevant to a software-engineering request.From its SKILL.md
npx -y skills add is-bo/fullstack-forge-skill --skill forge-integrationsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 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.
SKILL.md
4.3 KB, 815 tokens by cl100k_base, as published. Nobody here has run it
forge-integrations: External integrations
Purpose
Audit outbound and inbound integrations for authentication, validation, failure isolation, drift, and replay safety.
This is an agent playbook, not a claim of standalone analyzer coverage. Apply
fullstack-forge/references/shared/module-contract.md
for common applicability, evidence, command-safety, mutation, verification, and completion rules.
Never hide failed checks or claim that an operation ran when it did not.
Automatic activation signals
Activate when a request or direct repository evidence involves external integrations, when
the user explicitly names forge-integrations, or when discovery proves an applicable boundary.
- Third-party APIs, webhooks, SDKs, and service-to-service calls
When not to activate
- Self-contained applications with no external dependency
Automated support
Relevant discovery inputs are:
- integration inventory
- SDK manifests
- webhook routes and secrets
Available deterministic support, where present:
- Use
inspect-routesfor its bounded evidence when present; treat unavailable runtime evidence asNOT_VERIFIED.
Agent inspection procedure
- Inventory outbound calls and inbound webhooks with their providers, credentials, and code locations.
- For each outbound call verify timeout, retry policy with idempotency, rate-limit handling, and response validation before use.
- For each inbound webhook trace signature verification over raw bytes before parsing, then duplicate and out-of-order delivery handling.
- Check environment separation: sandbox versus production credentials, endpoints, and event routing.
- Probe failure isolation: determine what user-visible behavior results when the provider is down, slow, or returns malformed data.
Manual inspection requirements:
- Review provider dashboards, quotas, and deprecation notices
- Confirm contractual retention and incident obligations
Stack-specific guidance:
- Prefer official SDK verification primitives while validating their configured options
Evidence to collect
For formal findings, also follow fullstack-forge/references/PROTOCOL.md. Record the module's
inspected boundary, relevant tests, direct observations, and unavailable evidence.
Primary standards used as criteria, not proof of compliance:
- OWASP API Security Top 10 2023
- RFC 9110
Common production failures
- Inspect timeouts, bounded retries, jitter, circuit behavior, rate limits, and fallback
- Verify webhook signatures against raw bytes, freshness, replay defense, and event idempotency
- Check credential scope, version pinning, data minimization, sandbox separation, and error redaction
Missing-control checks
For every applicable criterion below, attach direct evidence or record a reasoned
NOT_APPLICABLE, NOT_VERIFIED, or BLOCKED status. The list is a routing checklist, not
evidence by itself.
- Timeouts
- Retry strategy
- Idempotency keys
- Signature verification
- Replay prevention
- Provider outages
- Rate-limit handling
- Request validation
- Response validation
- Secret rotation
- Sandbox versus production separation
- Duplicate events
- Out-of-order events
- API version changes
- Data mapping
- Logging
- Fallback behavior
- Circuit breaking
- Partial failures
Commands and tools
- Run
forge integrations audit --jsonorfullstack-forge integrations audit --jsonwhen an explicit audit is requested and the CLI is installed. Normal feature work does not require it. - Use the deterministic support named above only for its documented bounded evidence.
Safe fixes
- Add explicit timeouts, payload validation, and secret redaction
- Pin a compatible SDK version after tests
Approval-required changes
- Changing provider, credentials, contractual data flow, or failure policy
Verification
- Replay signed and tampered payloads
- Simulate timeout, rate limit, and provider error responses
Completion contract
Apply the shared module contract and the module-specific limitations below.
Known limitations
- Provider-side state and contracts require external evidence
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.