Releases: eep-dev/EEP
EEP v0.1.0
First public npm publish of all @eep-dev/* TypeScript packages at 0.1.0.
Added
-
@eep-dev/middleware— webhook dispatcher — New
WebhookDispatcherfans published events out to webhook subscribers
with the retry policy mandated by
docs/current/delivery_guarantees.md
§2: the 7-attempt exponential-backoff schedule (immediate → +5s →
+30s → +2m → +15m → +1h → +6h), a 10-second per-attempt timeout, and
automatic transition to thepausedstate after 5 consecutive
fully-failed deliveries (reset on the next success). Deliveries are
signed per Standard Webhooks via@eep-dev/signer, re-signed each
attempt so a late retry still lands inside the subscriber's replay
window, and filtered byevent_typesvia@eep-dev/validator.SubscriptionRecordgainsevent_types,status,
failure_count, and a per-subscriptiondelivery_secret;
DBAdaptergainsupdateSubscription. The in-memory and Postgres
adapters implement it, and the Postgres adapter tolerates rows
written before the new columns existed.EEPServernow persists those fields on/eep/subscribeand mints
adelivery_secretreturned once in the creation response;
/eep/audit-logredactsdelivery_secretso it is never
re-exposed.@eep-dev/signerand@eep-dev/validatoradded asmiddleware
dependencies and to its build chain.
-
@eep-dev/signer/web— Fixed a build break against
@types/node≥ 25:SubtleCrypto.verifynow narrows its data
argument toBufferSource, so the base64-decoded signature is cast
accordingly. -
Open-source readiness audit — Comprehensive trust-bundle and
release-pipeline hardening pass to prepare the repo for public
Apache-2.0 launch:- NOTICE — Apache 2.0 §4(d) attribution file added at the repo
root, listing pydantic, FastAPI, httpx, and informatively
referenced standards (CloudEvents, DID, VC, Standard Webhooks,
SSE, RFC 6455, RFC 2119, etc.). - GOVERNANCE.md § Intellectual Property, Trademark &
Independence — explicit statement of inbound=outbound licensing,
DCO, patent grant, trademark posture, domain/org ownership, and
independence from any commercial sponsor; conflict-of-interest
rules; legal contact. - MAINTAINERS.md (new),
.github/CODEOWNERS(new),
ROADMAP.md (new), CITATION.cff (new). - SECURITY.md — coordinated-disclosure timeline, encrypted
reporting (PGP + sigstore), security model summary, external
audit roadmap, link to the new MCP-Bridge threat model. packages/@eep-dev/mcp-bridge/SECURITY.md(new) — full
threat model for the MCP↔EEP trust boundary (T1 prompt-injection,
T3 SSRF, T4 replay, T6 LLM-DoS, etc.) with operator checklist.- Release pipeline (
.github/workflows/publish.yml) — every
npm publishnow uses--provenance(SLSA build attestation);
every PyPI upload uses Trusted Publishing OIDC (no token); all
publish jobs sit behind a manual-approvalreleaseGitHub
environment; CycloneDX SBOM emitted as a release artifact;
sigstore/cosign keyless signatures on every release artifact;
whitepaper PDF and conformance-fixtures tarball attached to
GitHub Releases;setup-cli,agent-adopt,middleware, and
eep-middleware-pythonnow included in the publish workflow. .github/renovate.json(new) — pins every GitHub Action to a
commit SHA on a weekly cadence.- Repo metadata — every
@eep-dev/*package.jsonand every
eep-*-pythonpyproject.tomlnow declaresrepository,
bugs,homepage, classifiers, project URLs, consistent
engines.node ≥ 20(>= 22forcompliance-cli),
requires-python ≥ 3.11, afileswhitelist, and
publishConfig.provenance: true.py.typedmarker added to
every Python package. pnpm-workspace.yaml+ rootpackage.json+tsconfig.base.json
— single-command monorepo build groundwork.@eep-dev/signer/web— new WebCrypto-based async signer
subpath for Cloudflare Workers, Deno Deploy, browsers, and Bun;
parity-tested against the NodeEEPSigner.tests/conformance-fixtures/(new) — 15 offline test
vectors across discovery, envelope, signature, gates, and
subscription with a machine-readablemanifest.json. Both the
TypeScript schema test suite and a new pytest suite
(tests/cross-impl/test_conformance_fixtures.py) consume them
in lockstep so any fixture or implementation drift fails CI. The
fixtures are released as a versioned tarball on every GitHub
Release.scripts/codegen-schema-types.mjs(new) — generates a
TypeScript surface from the JSON Schemas; CI's--checkmode
fails the build if the schemas and the generated types drift.docs/standards/draft-eep-protocol-core-00.md— IETF
Internet-Draft (kramdown-rfc front matter) for the Core tier,
ready for IETF datatracker submission..github/ISSUE_TEMPLATE/reference-implementation-rfc.yml
(new) — structured intake template for organisations proposing a
new-language reference implementation.@eep-dev/agent-adopt— first vitest test suite (mocked
@eep-dev/setup-cli), exercising happy-path orchestration,
early exits on inject/apply/verify failure,--no-patch,
--help,--report, and the optional compliance step.- README — promoted "Why EEP, not just MCP / A2A / webhooks /
ActivityPub?" to a prominent block above the existing
positioning table. - CONTRIBUTING.md — DCO sign-off, conformance-fixture, and
schema-types drift gate sections added.
- NOTICE — Apache 2.0 §4(d) attribution file added at the repo
-
Spec §14.2 (Standard checklist) — Clarified that webhook HMAC for outbound deliveries uses Standard Webhooks header names (
webhook-signature, etc., per §5), consistent with the compliance runner and the rest of the normative text. -
@eep-dev/agent-adopt— New package: chainssetup-cliinject/apply/verify, optional Express/FastAPI patchers, optional livecompliance-cli, writesEEP_ADOPTION_REPORT.md. See AGENTS.md. -
@eep-dev/setup-cli— ExportsrunInject,runApply,runVerify,applyFrameworkPatchers; addssrc/inject/patchers/(Express/FastAPI best-effort). Fix:eep-setupside-effect entry only when the resolved main script matches this package (avoids hijackingindex.jswhen imported byagent-adopt). -
Docs — docs/strategy/ (adoption strategy, unmet-needs map, launch playbook, registry seed, distribution checklist, screencast runbook). Registry: registry/adopters.json. Badge: assets/badges/eep-compatible.svg.
-
Integrations — Thin harness docs: integrations/openclaw-bundle/, integrations/cursor-rule/, integrations/claude-code-skill/.
v0.1 (tooling and examples — 2026-04-15)
- Interactive playground — browser-based EEP event validator and webhook signer at
eep-site/app/playground/(Web Crypto HMAC-SHA256, client-side schema validation againstevent.envelope.json). - Compliance-CLI HTML report —
--report-htmlflag generates a self-contained HTML audit report alongside JSON and Markdown. New probes: Layer 1 content negotiation (JSON/Markdown), 402 payment gate, WebSocket pulse check, and wired CloudEvents/EEP helper validators. - LangGraph/Claude integration example —
examples/langgraph-eep-agent/demonstrates a LangGraph agent subscribing to EEP events with gate handling (402/403), HMAC verification, and Claude-powered event summarization. Guide:docs/guides/langgraph-eep-agent.md. - OpenAPI Layer 1 enrichment —
buildOpenAPIin@eep-dev/setup-clinow emits full Layer 1/2/3 paths with schema$refs (eep-manifest, gate.402/403, subscription.request), Accept content negotiation parameters, EEP response headers, server block, license, and tags.
v0.1 (normative additions — 2026-04)
Backward-compatible v0.1 extensions (schemas, docs, and reference behavior) include:
- Federation registry economics — optional
economicsmetadata oneep-registrymanifests (registration fee, query quota, staking/challenge policy). - M2M commerce disputes — WebSocket
commerce.dispute.*message family (seeschemas/v0.1/ws-message.json). - Delegation privacy propagation —
delegation.proofcredential subject may bindoperator_privacy_policy_hash,allowed_dpv_purposes, andmax_retention_days; gates enforce alignment withdata_requestrequirements. - Cold-start trust — reference APIs demonstrate
cold_start→standardprogression (POST /eep/trust/graduate,GET /eep/trust-status,X-EEP-Trust-State). - Combined gates —
gate.configsupportscombinedrequirements; access resolution considers only tiers whose access list matches the requested resource (avoids subset-proof tiers masking combined tiers). - Docs (whitepaper + normative spec) — clarified semantic alignment for commerce/data exchange (JSON-LD contexts / declared profiles), high-frequency settlement options alongside L1 confirmations, Layer~3 replay retention bounds (
pulse_replay_*, close code4009), DID resolver caching with fail-closed guidance, and IoT/PQ payload trade-offs. - Docs (whitepaper GEO context) — informative GEO / generative-retrieval framing (manifest vs sitemap, agreement-gate attribution as policy text, publisher use case); bibliography
ref33–ref35; normative spec adds non-normative notes in Abstract, §3.4.2 (agreement), and §12 Discovery so GEO remains documentation motivation, not a conformance requirement.
Adopters: pin package versions; run @eep-dev/compliance-cli with --report-json / --report-md after upgrades. Python package name on PyPI-sty...