Install
$ agentstack add skill-hsienw-ai-agent-engineering-playbook-idempotency-audit-contract ✓ 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 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.
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
Idempotency and Audit Contract
Skill Interface
- Name: idempotency-audit-contract.
- Description: Design and review idempotency and audit contracts for agent runtimes that prevent duplicate side effects, propagate idempotency keys, persist operation history, redact sensitive payloads, audit tool decisions, and reconstruct task execution after retries and resumes.
- Parameters: Side-effecting operation, idempotency key scope and version, record lifecycle, expiry policy, audit event fields, actor and resource identifiers, redaction policy, replay rules, and verification cases.
- Instructions: Use this skill when a workflow writes to external systems or needs durable audit history. Lock before side effects, return recorded results for repeated keys, persist enough metadata for replay decisions, redact sensitive payloads, and test duplicate, expired, failed, concurrent, and resumed operations.
Side effects must be safe across retries, duplicate requests, worker crashes, and resume flows. Audit must explain what happened without storing sensitive payloads.
Idempotency Key
Use a scoped, versioned key:
type IdempotencyKey = {
namespace: string;
resourceKey: string;
version: string;
};
type IdempotencyRecord = {
key: string;
status: 'locked' | 'completed' | 'failed';
result?: unknown;
createdAt: string;
expiresAt: string;
};
Idempotency Rules
- Require idempotency for side-effecting operations.
- Lock before executing the side effect.
- Return the recorded result for repeated completed keys.
- Allow re-execution only after expiry or explicit invalidation.
- Include policy version in the key to avoid unsafe cross-version replay.
- Persist enough result metadata for deterministic replay decisions.
- Pair idempotency with a state transition guard for concurrent step updates.
Audit Event
type AuditEvent = {
eventId: string;
taskId?: string;
stepId?: string;
operationId?: string;
actorType: 'system' | 'user' | 'agent';
actorId: string;
action: string;
resourceType: string;
resourceId: string;
decision: 'allow' | 'deny' | 'pending_confirmation';
reasonCode?: string;
beforeStateRef?: string;
afterStateRef?: string;
createdAt: string;
};
Redaction Rules
Do not persist credentials, raw secrets, full prompts, full conversations, private uploaded content, or unmasked personal data. Persist structured summaries, hashes, opaque references, policy decisions, reason codes, and redacted payload fragments when needed.
Verification
Test repeated requests with the same key, expired keys, failed keys, concurrent key acquisition, audit reconstruction, redaction, missing idempotency keys for side effects, and resume after process restart.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: HsienW
- Source: HsienW/ai-agent-engineering-playbook
- 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.