Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
- Removed shared `$ref` dependencies from the v1.1.0 Commons schema family
- Standardized Commons receipts around a minimal proof-first structure
- Added conditional receipt requirements for success/error states
- Established Commons v1.1.0 as the canonical schema surface for new integrations
- Established Commons v1.1.0 as the active in-repo schema surface for new integrations
- Retained v1.0.0 as the last pinned canonical release until v1.1.0 pinning is completed
- Preserved earlier schema versions for compatibility and historical reference
26 changes: 22 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@commandlayer/protocol-commons",
"name": "@commandlayer/commons",
"version": "1.1.0",
"package_version": "1.1.0",
"description": "Canonical verb + schema layer for CommandLayer Protocol Commons (v1.1.0).",
"description": "Canonical Commons verb + schema package metadata for the active v1.1.0 schema family.",
"owner": "commandlayer.eth",
"contact": "dev@commandlayer.org",
"license": "MIT",
Expand All @@ -11,7 +11,7 @@
"schemas_root": "schemas/v1.1.0",
"examples_root": "examples/v1.1.0",
"checksum_file": "checksums.txt",
"schemas_cid": "PENDING (pre-release candidate; pinning not yet published)",
"schemas_cid": "PENDING",
"tag": "commons-schemas-v1.1.0",
"verbs": [
{
Expand Down Expand Up @@ -148,5 +148,23 @@
}
]
}
]
],
"active_release": {
"version": "1.1.0",
"status": "pre-release-candidate",
"schemas_root": "schemas/v1.1.0",
"commons_root": "schemas/v1.1.0/commons",
"examples_root": "examples/v1.1.0",
"schemas_cid": "PENDING",
"pin_status": "pending"
},
"pinned_canonical_release": {
"version": "1.0.0",
"status": "locked",
"schemas_root": "schemas/v1.0.0",
"commons_root": "schemas/v1.0.0/commons",
"examples_root": "examples/v1.0.0",
"schemas_cid": "bafybeigvf6nkzws7dblos74dqqjkguwkrwn4a2c27ieygoxmgofyzdkz6m",
"pin_status": "published"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@commandlayer/commons",
"version": "1.1.0",
"description": "ERC-8004 and x402-aligned canonical verbs and strict JSON Schemas for autonomous agents — immutable semantics, trustable receipts, and cross-runtime interoperability.",
"description": "Canonical Commons verbs and strict JSON Schemas for autonomous agents \u2014 active v1.1.0 schema family, historical pinned v1.0.0 release, and cross-runtime interoperability.",
"private": false,
"type": "module",
"license": "MIT",
Expand All @@ -17,6 +17,7 @@
"url": "https://github.com/commandlayer/protocol-commons/issues"
},
"keywords": [
"protocol-commons",
"agent",
"agents",
"ai-agents",
Expand All @@ -32,8 +33,7 @@
"schema-validation",
"schemas",
"semantics",
"trustless",
"x402"
"trustless"
],
"files": [
"schemas/",
Expand Down
Loading