Best for
- Use when user wants to create a new Freenet dApp, design contract state, implement delegates, build a Freenet-connected UI, OR upgrade an existing dApp — bump freenet-stdlib, ship a new contract/delegate version (v2), f…
freenet/freenet-agent-skills/skills/dapp-builder/SKILL.md
Build and maintain decentralized applications on Freenet using river as a template. Guides through designing contracts (shared state), delegates (private state), and UI, and through upgrading a live dApp safely. Use when user wants to create a new Freenet dApp, design contract state, implement delegates, build a Freenet-connected UI, OR upgrade an existing dApp — bump freenet-stdlib, ship a new contract/delegate version (v2), fix a bug that re-keys the WASM, or migrate state across a contract/de
Decision brief
Build decentralized applications on Freenet following the architecture patterns established in River (decentralized chat).
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/freenet/freenet-agent-skills --skill "skills/dapp-builder"Inspect the Agent Skill "dapp-builder" from https://github.com/freenet/freenet-agent-skills/blob/3f90a3b025d2e209d194b260723444abe0168cb5/skills/dapp-builder/SKILL.md at commit 3f90a3b025d2e209d194b260723444abe0168cb5. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Follow these phases in order.
Start by listing each kind of shared state your app needs — each kind becomes its own contract crate. Then design each one in turn using the questions below.
Determine what private data each user needs stored locally and split it across delegates by responsibility (e.g. one delegate per trust boundary or per long-running background task). Most apps need at least one delegate; many need several.
Build the user interface connecting to contracts and delegates. Two approaches:
Set up the build system, CI, and deployment pipeline.
Permission review
The documentation asks the agent to create, modify, or delete local files.
gh issue create --repo freenet/freenet-agent-skills \The documentation asks the agent to run terminal commands or scripts.
git checkout -b improve-<topic>The documentation asks the agent to run terminal commands or scripts.
# Make changes to dapp-builder/SKILL.md or references/*.mdEvidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 97/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 26 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Build decentralized applications on Freenet following the architecture patterns established in River (decentralized chat).
Freenet is a platform for building decentralized applications that run without centralized servers. Apps store and exchange data through a global, peer-to-peer Key-Value Store shared by every Freenet node.
The keys in that store are not arbitrary strings — they're derived from small pieces of WebAssembly called contracts that define how each value is allowed to change. The next two sections introduce the kinds of components that make up a Freenet app, then explain exactly how contract keys are formed and why that makes the system trustless.
A Freenet app is built from three kinds of components — contracts, delegates, and a UI. Most non-trivial apps have multiple contracts and multiple delegates, each handling a different concern.
A Freenet app typically has one or more contracts, each defining a different kind of shared state. River has a single room contract today, but a more complex app might have several (e.g. rooms, user profiles, invitations, search indexes), and each one is a separate contract crate that compiles to its own WASM.
A Freenet app may have one or more delegates, each handling a different local responsibility — key management, secret storage, background sync, notifications, and so on. Delegates are the local counterpart to contracts: where contracts hold shared state on the network, delegates hold private state on the user's device.
A single UI typically talks to all of an app's contracts and delegates.
fdev website update
publishes v2 to the same address users bookmarked. Do not design around a
rotating URL, and do not build a redirect contract to work around one. See
references/web-container-contract.md."Native app" above means desktop. Freenet does not currently support running a full node on mobile devices. Do not recommend or generate a production mobile wrapper without clearly warning about likely bandwidth, battery, thermal, CPU, and background-execution problems. Treat any such work as experimental, require explicit resource measurements before calling it viable, and do not represent it as an official Freenet client without approval from the Freenet Project.
Now that contracts have been introduced, here's how they're addressed in the network.
The key for a piece of data is derived from the cryptographic hash of the contract's WebAssembly (WASM) code, combined with a set of contract parameters that identify a specific instance.
Freenet solves "Eventual Consistency" using a specific mathematical requirement:
Join-semilattice: The function that merges updates must be associative, commutative and idempotent.
merge(A, A) == A. Delivery is at-least-once, so the same update will arrive twice — after a retry, a re-subscribe, or anti-entropy. A merge that changes the state on re-application never settles. This is the requirement most often missed; see references/contract-patterns.md → "Merge Law Requirements" for why identity is not the same thing, and for the property tests.Efficiency: Peers exchange Summaries (compact representations) and Deltas (patches/diffs) rather than re-downloading full state.
Requirement: get_state_delta must not ship state to a peer that already has it. When the requester's summary shows it holds everything you have, the delta carries no information, so it must not contain the state or approach the state's size. It should be a literally empty StateDelta (vec![]), which is the unambiguous "converged" answer and what freenet-scaffold produces for you; a few tens of bytes of encoding framing from serializing an all-empty struct is acceptable. What matters is delta size relative to state size: 20 bytes against a 500 KB state is fine, a state-sized delta is a broken delta mechanism that re-ships everything on every reconciliation, forever. Your summary must likewise be far smaller than your state. Core is adding a probe for contracts that get this wrong, and it currently costs the network real bandwidth. Full detail, code shapes, and a test are in references/contract-patterns.md → "The Delta to an Up-to-Date Peer".
Use deterministic maps everywhere in state AND summaries: BTreeMap/BTreeSet, never HashMap/HashSet. Peers decide they have converged by comparing state bytes, so two peers holding the same logical state in a different byte order heal forever without ever agreeing. Canonical encoding is a platform requirement (freenet-core #5320), and the merge laws are checked on exact bytes because of it. A HashMap serializes in nondeterministic order (ciborium), so two identical states can summarize to different bytes and core's byte-level convergence check misfires — spurious heals, or missed ones. The same caution applies to any map inside whatever summarize returns.
Beyond that, make sure your state genuinely converges through summarize / delta / apply, and test that it does, rather than assuming a live broadcast reaches every peer.
Previously documented here as a live limitation, now fixed. freenet/freenet-core#4857 ("State updates permanently lost for rarely-changing fields") is CLOSED. A
ContractQueueFulldrop was silent, and the sender cached its own summary as the receiver's on send-Ok, so it believed the peer was current and never re-sent — leaving rarely-changing fields (config, permissions, ban lists) diverged until the ~5-minute InterestSync heartbeat happened to correct them.The shipped fix has the queue-full receiver emit a
ResyncRequest, which makes the sender clear its poisoned summary and re-send full state. It is throttled to one per (contract, peer) per 30s, because #4251 showed that one request per dropped delta amplifies into a full-state storm onto the same saturated queue; #4862 hardened it against bridge backpressure. SeeRESYNC_REQUEST_MIN_INTERVALincrates/core/src/ring/interest.rs.Do not design around multi-minute staleness on rarely-changing fields, and do not treat a ban list or permission field as needing to ride alongside a frequently-changing one. The earlier guidance to do so is retired.
Summaries are ~23.7% of all outbound bytes on the Freenet network, and the fleet-mean summary is 16,675 bytes against a protocol digest-entry size of 21 bytes (freenet-core#5153). A fat summary is not a local inefficiency: it ships to every interested peer on every ~5-minute anti-entropy heartbeat whether or not anything changed, and it sets the floor for how cheaply a peer can be brought up to date.
Every rule below is checkable in review and grounded in a measured finding from River.
Every summary field must be read by delta(). Grep each field name against the delta() bodies. A field nothing reads is dead weight re-sent forever.
A value that is only ever compared for equality must be a fixed-width digest, never the thing it fingerprints. River carried raw Ed25519 signatures in member_info purely to run >; replacing them with a 16-byte digest measured 135.27 → 28.01 bytes per entry. The DM summary still does this for a bare contains() at 66 bytes/entry — 19,803 bytes at its cap, larger than the whole rest of the summary (freenet/river#596).
Size a digest by who controls the colliding inputs, not by taste. If a party can grind both sides of the comparison, 64 bits is a ~2^32 birthday search — hours on commodity hardware — so use 128. If the attacker controls only one side, 64 may do. Write the threat model in the doc comment. A collision here is not a crash; it is a record that silently never propagates.
Assert the encoding; never derive it. The same 64 bytes cost 66 CBOR bytes as a byte string and 119 as a derived tuple — ciborium maps serialize_tuple to an array where every byte ≥ 24 costs two. River quoted 66 for a type that actually encoded at 119, and the wrong number survived an issue, a PR body, and a review. Hand-write Serialize with serialize_bytes for any fixed-size byte array, and pin it with a golden vector: one fixed input, one fixed expected digest, one fixed expected byte length. A randomised digest oracle misses byte-order bugs intermittently.
Measure size with realistic key values, not small integers. A FastHash(i) for small i encodes in 1-3 CBOR bytes; a real key's encodes in 9. A test built from 0..N understates the per-entry cost by ~30% and will pass review.
A summary should be O(1) or sub-linear in the collections it describes — or justify the linearity in writing. A flat enumeration grows without bound as your app succeeds. If you keep it linear, state the element cap that bounds it and check cap × per-entry against your budget. River's is fully linear; at 200 members × 1000 messages it measures 16,723 bytes.
A lossy summary is legal when apply_delta is idempotent — exploit that. K fixed buckets each holding an 8-byte digest of that bucket's contents makes the summary constant-size: measured K=16 → 145 bytes, independent of N, against 3,894 bytes for the flat form at 139 members. get_state_delta may then return a superset of the true delta, which is sound only if applying an already-held element is a no-op — verify that first. The trade is real: one changed element resends its whole bucket. It wins because summaries go out on every heartbeat while deltas fire only on change, so measure your summary-broadcast : state-change ratio before committing.
A capped or pruning collection needs a retention horizon in the summary. Without one, delta() is a pure set difference: the receiver prunes what it just received, neither summary changes, and the pair re-sends forever. Publish the oldest key held, only at capacity, so it strictly increases each exchange and the loop provably terminates.
Nothing in a summary should reveal information the recipient is not entitled to. A summary goes to more peers, more often, than state does. River's DM summary advertises every DM in the room to every member, participant or not, leaking exact DM volume.
A summary is a wire-format commitment: changing it re-keys the contract and strands every existing copy. Which hash, how wide, which bytes in which order, and how it serializes are all frozen at publish. Keep a registry of past generations (River keeps legacy_room_contracts.toml, 31 entries) and expect every abandoned generation to keep costing anti-entropy bandwidth indefinitely — one stranded River generation is currently doing 3,829 failed summary comparisons against zero update events (freenet-core#5158). Batch summary changes rather than shipping them one at a time.
Follow these phases in order.
Building on an app you do NOT own — reading River rooms, using the ghostkeys delegate, indexing another project's contracts? Do not hardcode their contract or delegate key. It is
BLAKE3(BLAKE3(wasm) ‖ params), so it moves on every re-key of theirs, including a bare version bump, and the failure is silent: every read comes back looking like "this user has nothing stored". Pinning a version of their crate does not help — that pins you to their view of the key as of their release, which is the thing that went stale. Fetch their key at runtime instead: resolve their author-signed pointer if they publish one, and otherwise read it from their webapp bundle, which is what ghostkeys does today. Pointer adoption is thin, so expect the fallback to be the path for most apps right now. Either beats a compiled-in constant. Seereferences/building-on-other-apps.md.Working on an app that already exists? Before anything else, check whether it hardcodes a delegate key belonging to a platform delegate it does not own (ghostkeys being the one in use today). That constant goes stale on every re-key of that delegate — including a bare version bump — and the failure is silent: every request comes back looking like "this user has nothing stored". One grep, and the fix is a runtime fetch. See
references/delegate-patterns.md→ "Depending on Someone Else's Delegate". This broke every ghostkeys integration in August 2026 and was found by a confused user rather than by any test.Already shipped v1 and here to UPGRADE? (bump
freenet-stdlib, ship a new contract/delegate version, or fix a bug that re-keys the WASM) — go straight toreferences/upgrade-and-migration.md→ "Upgrading a Freenet dApp — the painless path", the single start-to-finish playbook. A routine WASM/stdlib bump is low-risk and mechanical when you designed for it at v1, not "recreate everything and all invites die" — River's live 0.6→0.8 stdlib re-key (verified 2026-07-12) auto-migrated every room on refresh, kept every invite and the 78-member Official room intact, and needed no recreation. The phases below build a new dApp; the playbook ties the upgrade steps together (v1 design precondition → reproducible builds → register the outgoing hash →freenet-migrate→ publish → do NOT recreate instances or warn of dead invites).
Start by listing each kind of shared state your app needs — each kind becomes its own contract crate. Then design each one in turn using the questions below.
Key questions (per contract):
identity-and-addressing.md.identity-and-addressing.md → "Cryptographic CAPTCHA". Present the choice to the developer rather than picking silently: ghost keys cost their users money, that money funds Freenet, and the mint is centralized (verification is not). Those are product and architecture decisions, not technical details to settle on the developer's behalf.validate_state/update_state/summarize_state WASM execution cost scales with it too. If a kind of data can grow without bound (message history, uploaded files, a membership list that only grows), don't let one contract instance absorb all of it — shard by the natural unit of write concurrency instead (one contract per room, per user, per time-window, per shard-key, etc.), so each instance stays small regardless of how large the dataset gets in aggregate. See state-authorization-patterns.md → "State Size Budget".Implementation steps:
#[composable] macro from freenet-scaffoldComposableState trait for each componentContractInterface trait for the contractget_state_delta returns a negligible delta (ideally zero bytes, never state-sized) when the requester's summary already matches your state (see contract-patterns.md)upgrade-and-migration.md step 1. Invites and links do not die on an upgrade — River's 0.6→0.8 re-key on the live network kept every room and invite. Recreation is only for deliberately changing the app's identity anchor (e.g. rotating a compromised owner key), never for a routine contract/stdlib bump. The shipped baseline (River #292, Delta) is a backward probe from a committed legacy-code-hash registry: reconstruct each predecessor key from (stable params ‖ old code_hash), GET the old state, fold it forward, and re-PUT under the current key — permissionless because the successor's validate_state re-verifies every byte. The one required operational step is registering the outgoing code hash in the registry before the WASM changes, then republishing. An author-signed OptionalUpgrade pointer is an optional straggler courtesy on top, not the mechanism that moves state. The reusable freenet-migrate crate (0.6.0 on crates.io, with freenet-migrate-build 0.2.0) packages this baseline and owns the probe decisions in a sans-IO driver; it is what River's contract-migration path runs in production (browser UI and riverctl), and existing apps adopt it without a rewrite because its build codegen reads their existing [[entry]] registries and emits view consts matching the hand-rolled shapes (freenet/river#434, #436, #437). Two things about the probe that lose data silently if you get them wrong: silence is not absence (0.6.0's breaking change: a timeout is Unknown, never a miss, and no outcome certifies that the migration is safe to record as finished), and nothing may write to the new key before the probe runs, because the probe's trigger is "the new key has no real state yet" and an earlier write permanently suppresses it (freenet/river#621). For the procedure of swapping an existing hand-rolled sweep over to the crate, see the freenet-migrate-adoption skill. See contract-patterns.md → "Contract WASM Upgrade & State Migration". For the cross-cutting operational discipline that keeps the migration itself from losing data (resumable, idempotent, non-destructive, regression-gated, observable), see upgrade-and-migration.md.state-authorization-patterns.md before designing the second iteration. It captures cross-cutting patterns (per-item vs bundled signatures, replay protection via monotonic counter / tombstones / cross-context binding, signed-payload hygiene, time::now() gotchas, related-contracts limits, wire-format stability) that bite on every contract beyond the trivial.References:
references/contract-patterns.md — ContractInterface, the merge laws, composable state, basic signatures.references/state-authorization-patterns.md — authentication, replay protection, signed-payload hygiene, time, related-contracts, wire-format stability, common pitfalls.references/identity-and-addressing.md — short self-certifying user-facing addresses, keeping large (post-quantum) keys out of identifiers, identity that survives WASM upgrades, and blocking bots without a server (ghost keys vs proof-of-work).Determine what private data each user needs stored locally and split it across delegates by responsibility (e.g. one delegate per trust boundary or per long-running background task). Most apps need at least one delegate; many need several.
Key questions (per delegate):
identity-and-addressing.md → "Cryptographic CAPTCHA" for what it is for, how it pairs with proof-of-work as an escape hatch rather than replacing it, and the two caveats worth relaying to the developer: the mint is centralized, and Freenet has a funding interest in you choosing it.Implementation steps:
DelegateInterface traitExportSecrets handler (an earlier misconception): River's real mechanism messages each old delegate key via DelegateRequest::ApplicationMessages, re-running the old WASM to read its secrets, and folds the signing keys forward (encryption secrets are re-derived). Keep a committed registry of old delegate keys and migrate promptly — the re-run breaks after a stdlib/ABI bump (freenet/river#204). See delegate-patterns.md for the mechanism; freenet-migrate codifies the delegate registry and build codegen, but delegate secret carry-forward has no core mechanism and never will — a node-level attempt (RegisterDelegateWithPredecessors) was built, shipped, then found forgeable and disabled as a security fix (freenet-core#5199), and after three rejected trust-model designs, app-level migration is settled standing policy, not an interim measure. App-level does not mean bespoke: freenet-migrate ships the delegate-side entry points (migrate_delegate_secrets, register_delegate_with_migration, unchanged since 0.5.0; crates.io is now 0.6.0, whose break is contract-half only), and River, Delta and ghostkeys all drive them on main at 0.5.0. Note that River and Delta run the crate's walk alongside their existing hand-rolled sweep, which stays authoritative for now; retiring the sweep is a later release, after the walk field-validates. See delegate-patterns.md → "Delegate secret migration: no core mechanism, and why" for the full history, the freenet-migrate-adoption skill for the swap procedure, and freenet-core#2776 for live status. See upgrade-and-migration.md for the operational discipline (resumable/interrupted-migration recovery, migration telemetry, and the upgrade test harness).Reference: references/delegate-patterns.md
Build the user interface connecting to contracts and delegates. Two approaches:
Best for: teams already in Rust, complex state logic shared with contracts.
Implementation steps:
<link> / <script> tags from
cdn.jsdelivr.net, cdnjs.cloudflare.com, fonts.googleapis.com, etc.
are blocked in production even though they work in dx serve /
vite dev. See references/ui-patterns.md "Gateway CSP: Vendor Your
Assets".Best for: web developers, faster iteration, familiar tooling (npm, SCSS, etc.).
Implementation steps:
@freenetorg/freenet-stdlib (TypeScript package)FreenetWsApi class for WebSocket connection (handles FlatBuffers serialization)FreenetWsApi constructor (sandbox blocks cookie reading)define to inject contract hashes and delegate key bytes at build timeClientRequestT, ApplicationMessagesT, etc.)A Freenet UI's real render path only runs in a browser. A Dioxus UI ships as a WASM bundle, so rendering a component tree to a string in a Rust test does not exercise the compiled bundle, its event handlers, or its asset paths, and both options reach the node over a WebSocket that unit tests never touch. Drive the UI with Playwright (or equivalent browser automation) from the first screen onward, not only at release time. Treat "I built the component" as unfinished until a browser has loaded it and a script has clicked through it.
dx serve for Dioxus, vite dev for TypeScript) and
drive it with Playwright against mock or offline data, so render correctness,
navigation, and form validation gate every PR. This is the offline tier in
references/production-smoke-testing.md, which has a starter spec.iso tier). Reaching your app there needs
frameLocator and an absolute-URL goto, because the gateway wraps every
webapp in an iframe shell.For interactive debugging rather than scripted specs, the Playwright MCP browser
tools drive a running dx serve or local node directly. See the local-dev
skill, "Debugging with Playwright".
References:
references/ui-patterns.md - WebSocket connection models, gateway CSP,
serving large binary assets from a dedicated contract, framework-specific
patterns.references/production-smoke-testing.md - the four test tiers, the
development-loop browser-validation recipe, and the iframe-shell Playwright
idioms.Set up the build system, CI, and deployment pipeline.
Implementation steps:
Set up build orchestration — either Makefile.toml (cargo-make) or plain Makefile
Add a preflight task that runs fmt, clippy, tests, and migration checks before publish
Add GitHub Actions CI workflow (runs on push and PRs)
Back up contract state to the delegate for network resilience
Add a production-liveness smoke test. A ~50-line Playwright spec
asserting the gateway-hosted webapp mounts, vendored CSS loaded, and the
browser console is clean catches CSP blocks, iframe-shell mistakes, and
broken archives that no unit test reaches. See
references/production-smoke-testing.md.
Check the gateway port and (optionally) tar reproducibility. The
gateway runs on 7509 — older docs and scripts still reference 50509.
For byte-reproducible webapp archives across build hosts, invoke tar
with the GNU flags listed under "Tooling Preflight" in
references/build-system.md.
Publish the UI as a web container contract — its URL is permanent, and
you upgrade in place. Shipping a new release does not rotate the
gateway URL: the UI is the container's state, while the contract key is
BLAKE3(BLAKE3(container_wasm) || publisher_key) and neither input contains
your UI.
fdev website init once (it prints your URL and writes your signing key),
then fdev website publish / fdev website update for every release
thereafter. Back up the signing key on day one — lose it and the site is
frozen at its last version forever, and no redirect can rescue it. Keep
fdev's built-in versioning unless you have a concrete reason not to: a
hand-rolled counter seeded below the stored version bricks the site
permanently, so if you must switch, seed strictly above the current
on-network version. Whether to pin the container WASM with --contract-wasm
is a real trade-off (stable address vs. freezing a third-party contract
implementation) — read it before deciding. See
references/web-container-contract.md. Do not build a redirect/pointer
contract for stable URLs; you already have one.
Plan contract-WASM stability before the first release. A
cargo update in the workspace root must not silently rotate
contract IDs. See references/build-system.md →
"Per-contract lockfile isolation".
Test the upgrade path and make migration resumable. The dangerous
inputs are old-state -> new-code and interrupted migration, neither
exercised by testing the new version on fresh state. Add an old-format-load
test and an interrupted-migration-recovery test, and make migration
idempotent + resumable (in-progress marker cleared only on full success) +
non-destructive + regression-gated + observable. See
references/upgrade-and-migration.md.
References:
references/build-system.md — build, CI, packaging, tooling
preflight, per-contract lockfile isolation, contract-ID
reproducibility caveat, pre-commit hook for stray .wasm.references/production-smoke-testing.md — iframe shell architecture,
Playwright recipe for post-publish liveness checks.references/web-container-contract.md — how a webapp is addressed and
upgraded in place at a permanent URL, fdev website, version
monotonicity, key backup, and the size budget.references/facade-pattern.md — indirection for the rare case where you
must move an audience to a different contract (container-WASM migration
or publisher-key rotation). Not needed for ordinary releases.references/upgrade-and-migration.md — operational discipline for safe
contract/delegate upgrades: the five migration properties (idempotent,
resumable, non-destructive, regression-gated, observable), enumerating
dynamic key families, the upgrade test harness, and staged reversible rollout.references/building-on-other-apps.md — the consumer side: integrating with
a contract or delegate you do not own, resolving the author's pointer instead
of pinning a key, the seven outcome arms, and what a pointer does not tell you.my-dapp/
├── common/ # Shared types between contract/delegate/UI
│ └── src/
│ ├── lib.rs
│ └── state/ # State definitions
├── contracts/ # one subdirectory per contract crate
│ ├── room-contract/
│ │ ├── Cargo.toml
│ │ └── src/lib.rs # ContractInterface implementation
│ └── profile-contract/ # add more as the app grows
│ └── ...
├── delegates/ # one subdirectory per delegate crate
│ ├── chat-delegate/
│ │ ├── Cargo.toml
│ │ └── src/lib.rs # DelegateInterface implementation
│ └── identity-delegate/ # add more as the app grows
│ └── ...
├── ui/
│ ├── Cargo.toml
│ ├── Dioxus.toml
│ └── src/
│ ├── main.rs
│ └── components/
├── Cargo.toml # Workspace root
└── Makefile.toml # cargo-make build tasks
my-dapp/
├── contracts/
│ └── my-contract/
│ ├── Cargo.toml
│ └── src/lib.rs # ContractInterface implementation
├── delegates/
│ └── my-delegate/
│ ├── Cargo.toml
│ └── src/lib.rs # DelegateInterface implementation
├── web/
│ ├── package.json
│ ├── vite.config.ts # Injects contract/delegate keys at build time
│ ├── tsconfig.json
│ ├── index.html
│ └── src/
│ ├── index.ts # Entry point, connection flow
│ ├── freenet-api.ts # FreenetWsApi wrapper
│ ├── delegate-api.ts # Delegate FlatBuffers message building
│ ├── identity.ts # Identity management (delegate + fallback)
│ ├── types.ts # Shared TypeScript types
│ └── components/ # UI components
├── Cargo.toml # Workspace root (contracts + delegates)
└── Makefile # Build orchestration
River demonstrates all patterns:
contracts/room-contract/delegates/chat-delegate/ui/common/Track the versions River (the reference dApp) uses. Mismatched versions cause deserialization failures, missing features, and "variant index out of range" errors. Check River's workspace Cargo.toml before pinning.
As of May 2026 — River pins freenet-stdlib = "0.6.0" but the upstream
crate is now 0.8 (0.6 → 0.7 added Base58-stringified contract_states
keys in NodeDiagnosticsResponse; 0.7 → 0.8 hardened wire-boundary enums
with #[non_exhaustive] and removed the world-known DEFAULT_CIPHER /
DEFAULT_NONCE constants). If you build only against River, mirror its
pin; if your code links into stdlib 0.8 directly, you need the bumped
version and the wildcard match arms / random cipher generation
documented in references/delegate-patterns.md.
# Workspace-wide (Cargo.toml) — track this against stdlib 0.8 once River bumps.
freenet-stdlib = { version = "0.8", features = ["contract"] }
freenet-scaffold = "0.2.2"
freenet-scaffold-macro = "0.2.2"
# UI crate (ui/Cargo.toml): enables WebApi/WebSocket helpers
freenet-stdlib = { workspace = true, features = ["net"] }
# UI framework
dioxus = { version = "0.7.3", features = ["web"] }
The contract feature is required for contract crates targeting
wasm32-unknown-unknown; use the delegate feature for delegate crates.
The net feature pulls in WebApi for the UI.
For UIs built with TypeScript + Vite (Option B in Phase 3), depend on the
matching @freenetorg/freenet-stdlib release:
{
"dependencies": {
"@freenetorg/freenet-stdlib": "^0.2.0"
},
"devDependencies": {
"vite": "^6.0",
"typescript": "^5.0",
"sass": "^1.0"
}
}
The TS package v0.2.0 brought the API to parity with the Rust client:
FreenetWsApi with promise-based get/put/update
(await api.X(...), resolves/rejects on the matching response), full
ResponseHandler including onContractNotFound/onSubscribeResponse/
onClose, inbound ReassemblyBuffer, and transparent outbound chunking
for payloads >512 KB. Callbacks still fire alongside the promise-based
calls for backward compatibility; the default request timeout is 30 s.
subscribe is also promise-based from TS package 0.4.0 (resolves/
rejects on the matching SubscribeResponse); on the npm-published 0.3.0
and earlier it resolves as soon as the request is sent, never on the
host's response — use the ResponseHandler callbacks to detect a refused
subscribe on those versions. disconnect resolves on send in every
version. See references/ui-patterns.md for the full pattern (including
which stdlib version you need for which behavior) and a warning about the
private sendRequest cast used for delegate messages until a public
builder lands.
stdlib v0.6.0 (PR #75) removed the public constants DEFAULT_CIPHER
and DEFAULT_NONCE to close a CVE-class issue (world-known keys leaked
into any binary that imported them). Delegates that previously used these
must now generate random values per session — e.g.
let key: [u8; 32] = rand::random(); let nonce: [u8; 24] = rand::random();.
Code still referencing the old constants will fail to compile against
stdlib 0.6 or newer.
This skill is designed to be self-improving. When encountering issues while using this skill, agents should file GitHub issues or submit PRs to improve it.
File an issue at freenet/freenet-agent-skills when:
gh issue create --repo freenet/freenet-agent-skills \
--title "dapp-builder: <brief description>" \
--body "## Problem
<describe what was unclear or incorrect>
## Context
<what were you trying to accomplish>
## Suggested Improvement
<optional: how the skill could be improved>"
For concrete improvements:
# Clone and create branch
gh repo clone freenet/freenet-agent-skills
cd freenet-agent-skills
git checkout -b improve-<topic>
# Make changes to dapp-builder/SKILL.md or references/*.md
# ... edit files ...
# Submit PR
git add -A && git commit -m "dapp-builder: <description>"
gh pr create --title "dapp-builder: <description>" \
--body "## Changes
<describe improvements>
## Reason
<why this helps>"
Frequently asked questions
Build decentralized applications on Freenet following the architecture patterns established in River (decentralized chat).
The source record exposes this install command: npx skills add https://github.com/freenet/freenet-agent-skills --skill "skills/dapp-builder". Inspect the command and pinned source before running it.
Static rules flagged write-files, exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
oaustegard/claude-skills
Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre
HKUDS/Vibe-Trading
Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.
vasilyu1983/AI-Agents-public
Guides iOS testing with XCTest, XCUITest, Swift Testing, simctl, and xcresult. Use when choosing destinations, controlling flakes, or parsing test artifacts for native apps.
brucesongs/kali-claw
Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.