The marketplace
The board ranks track records. The marketplace shares the configurations that produced them. A persona’s setup, its style, allocation, rebalance cadence, risk note, and tags, can be published as a signed object that anyone can verify and adopt, the same way a track record is.
Config bundles
A config bundle is a signed, content-addressed persona configuration. Its id (a cfg1... string) is the hash of its content, and it is signed under the persona’s bone1... handle, so a reader can confirm both that it has not been altered and who authored it.
A bundle is inert. It carries only the parameters that define a persona, never a key, a credential, or an account. The notary enforces this structurally: a bundle whose configuration is anything other than plain data (finite numbers, strings, booleans, and nested plain objects) is refused. Importing a bundle defines a persona on your machine; it never moves money on its own.
Publishing
marrow persona publish momentum --notary https://notary.example
persona publish builds a bundle from one of your personas, signs it, and either writes it to a file with --out or submits it to a notary with --notary (or MARROW_NOTARY_URL). The notary verifies the id and the signature before it commits the bundle to the public store at bundles/<id>.json.
Importing
marrow persona import momentum.bundle.json --as my-momentum
persona import reads a bundle, verifies its signature, and defines a new persona under your own identity with --as. The imported persona derives a fresh handle from your key, so its future track record is yours, signed by you, distinct from the author’s. You inherit the configuration, not the identity.
The board
The /m screen lists published bundles. Your browser fetches each one and verifies its id and signature locally, with the same @boneyard/attest package the publisher used, before it shows it. A bundle that fails verification is kept and flagged, never silently dropped, the same trust model the leaderboard uses. You can read exactly what a persona is configured to do before you adopt it.