seal-access-control — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited seal-access-control (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
# Suiperpower telemetry. Routes through the CLI so projects.json + Convex stay in sync.
# Silent on failure so the skill never blocks. Opt out: SUIPERPOWER_TELEMETRY=off.
#
# AGENT NOTE: when this skill finishes, run the matching completion command:
# suiperpower track seal-access-control build completed
# Or use "failed" / "aborted" if it ended that way.
command -v suiperpower >/dev/null 2>&1 && suiperpower track seal-access-control build started >/dev/null 2>&1 &
trueIf TEL_PROMPTED is no, before doing real work, ask the user:
Help suiperpower get better. We track which skills get used and how long they take. No code, no file paths, no PII. Change anytime in ~/.suiperpower/config.json.>
A) Sure, anonymous B) No thanks
Write the answer to ~/.suiperpower/config.json telemetryTier field and create ~/.suiperpower/.telemetry-prompted. Then continue.
Integrates Seal into a Sui project so the user can encrypt data client-side and control decryption through Move access policies on chain. Picks the right access pattern (allowlist, subscription, token-gate, time-lock, etc.), writes the Move policy module with seal_approve functions, wires up the @mysten/seal TS SDK for encrypt and decrypt, and verifies a real round-trip before declaring done.
find-next-sui-idea first.scaffold-project first.walrus-storage instead.build-with-move.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.
.suiperpower/build-context.md from scaffold-project. Read it if present.If unclear, interview the user for:
seal_approve entry functions implementing the access policy.@mysten/seal for encrypt and decrypt flows.walrus-storage patterns)..suiperpower/build-context.md: ## seal-access-control session, <timestamp>
- pattern: <whitelist | subscription | account_based | private_data | tle | voting | key_request>
- policy module: <module::name>
- seal_approve functions: <names>
- package id (testnet): <id or pending>
- walrus integration: <yes | no>
- open issues: <list>.suiperpower/build-context.md if it exists.seal_approve function.seal_approve entry functions following the Seal convention (see references/seal-patterns.md).seal_approve function: name starts with seal_approve, first param is id: vector<u8>, must not modify state.@mysten/seal and @mysten/sui.SealClient with testnet key server config (see references/seal-quickstart.md).client.encrypt().SessionKey, get personal message signature from wallet, build seal_approve PTB, call client.decrypt().blobId on chain.walrus-storage skill and references/seal-quickstart.md for the canonical pattern..suiperpower/build-context.md..suiperpower/intent.md exists and the session was non-trivial (new module, new sponsor integration, or material changes to public functions), recommend verify-against-intent as the next step so drift is caught before shipping.intent.md exists and the session was non-trivial, surface that gap once: offer clarify-intent to backfill, do not force it.| Use case | Pattern | Module |
|---|---|---|
| Admin controls who can decrypt | whitelist | Admin-managed address allowlist |
| Paid, time-limited access | subscription | Fee + TTL, auto-expires |
| Encrypt to a specific address | account_based | Only that address decrypts |
| Creator-only private data | private_data | Only the object creator decrypts |
| Content unlocks after a date | tle (time-lock) | Anyone decrypts after timestamp |
| Secret ballot / sealed-bid auction | voting | Threshold decryption after vote closes |
| Delegated access via witness | key_request | Third party grants access on behalf |
If the user's requirement spans two patterns (e.g., allowlist that expires), compose them in a single module. The seal_approve convention is flexible enough for custom logic.
Before reporting done, the skill asks itself the following and refuses to declare success if any answer is no:
sui move build?seal_approve function follow the convention (name prefix, id: vector<u8> first param, no state mutation)?verifyKeyServers documented as false for dev and true for production?If any answer is no, the skill reports the gap and works through it before claiming the integration is complete.
On-demand references (load when relevant to the user's question):
references/seal-quickstart.md: SealClient init, encrypt, decrypt, SessionKey, Walrus integration recipes.references/seal-patterns.md: All 7 Move access patterns with seal_approve function signatures and when to use each.references/seal-pitfalls.md: Common mistakes with Seal integration and how to avoid them.Knowledge docs (load when scope expands beyond what is in references):
skills/data/sui-knowledge/sponsor-docs/walrus.md: Walrus concepts and integration for encrypted blob storage.External docs (fetch at runtime for the latest API surface):
claude "/suiper:seal-access-control <your message>"codex "/seal-access-control <your message>"grok, then /seal-access-control <your message> in the session~/.cursor/rules/seal-access-control.mdc and reference it.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.