Skip to content

Commit efffe8e

Browse files
authored
Merge pull request #115 from crystian/changeset-release/main
chore: version packages
2 parents cd15dd1 + b9dba2c commit efffe8e

8 files changed

Lines changed: 49 additions & 14 deletions

File tree

.changeset/provider-coming-soon.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@
66
> Forward-looking plan: [`ROADMAP.md`](./ROADMAP.md).
77
88
<details open>
9+
<summary><b>0.61.3</b> · 2026-06-21</summary>
10+
11+
### CLI Patch
12+
- Add a `comingSoon` flag to a Provider's `presentation` (spec + kernel). A coming-soon Provider ships in the registry (node chips still render) but is never selectable as the active lens: auto-detect skips its markers, the BFF drops it from `GET /api/active-provider`'s `selectable` set, and the UI greys it with a `(coming soon)` suffix. `openai`, `antigravity`, and `agent-skills` are marked coming-soon, so only `claude` is selectable today.
13+
14+
### Spec Patch (0.55.1)
15+
- Add a `comingSoon` flag to a Provider's `presentation` (spec + kernel). A coming-soon Provider ships in the registry (node chips still render) but is never selectable as the active lens: auto-detect skips its markers, the BFF drops it from `GET /api/active-provider`'s `selectable` set, and the UI greys it with a `(coming soon)` suffix. `openai`, `antigravity`, and `agent-skills` are marked coming-soon, so only `claude` is selectable today.
16+
17+
</details>
18+
19+
<details>
920
<summary><b>0.61.2</b> · 2026-06-21</summary>
1021

1122
### CLI Patch

spec/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Spec changelog
22

3+
## 0.55.1
4+
5+
### Patch Changes
6+
7+
- Add a `comingSoon` flag to a Provider's `presentation` (spec + kernel). A coming-soon Provider ships in the registry (node chips still render) but is never selectable as the active lens: auto-detect skips its markers, the BFF drops it from `GET /api/active-provider`'s `selectable` set, and the UI greys it with a `(coming soon)` suffix. `openai`, `antigravity`, and `agent-skills` are marked coming-soon, so only `claude` is selectable today.
8+
9+
## User-facing
10+
11+
Only the Claude provider is selectable for now. Codex, Antigravity and Open Skills appear greyed out as "coming soon" in the provider lens, and projects auto-detect Claude without a lens prompt.
12+
313
## 0.55.0
414

515
### Minor Changes

spec/index.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,11 @@
174174
}
175175
]
176176
},
177-
"specPackageVersion": "0.55.0",
177+
"specPackageVersion": "0.55.1",
178178
"integrity": {
179179
"algorithm": "sha256",
180180
"files": {
181-
"CHANGELOG.md": "cfaa5ab3c07175903f3334274ad87b257b1df1e7a565468e1bc47fb4583a9b6b",
181+
"CHANGELOG.md": "3c44981379253010e1181af77ae3d5910a5037a013d2a49fba870e8a31338a70",
182182
"README.md": "a790cd010b46d47883d1f37e3893cea9d7aa69ec4750c0202e6a0c99991e7980",
183183
"architecture.md": "dd067342f87432eea095aea869db62bd2f8fc3ef02ec070f5c15290d2b138808",
184184
"cli-contract.md": "bfcc200fb085270cb425bb8692be51f4adf48dce4eb483e0632a05a658470b5a",

spec/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@skill-map/spec",
3-
"version": "0.55.0",
3+
"version": "0.55.1",
44
"description": "JSON Schemas, prose contracts, and conformance suite for the skill-map specification.",
55
"license": "MIT",
66
"type": "module",

src/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# skill-map
22

3+
## 0.61.3
4+
5+
### Patch Changes
6+
7+
- Add a `comingSoon` flag to a Provider's `presentation` (spec + kernel). A coming-soon Provider ships in the registry (node chips still render) but is never selectable as the active lens: auto-detect skips its markers, the BFF drops it from `GET /api/active-provider`'s `selectable` set, and the UI greys it with a `(coming soon)` suffix. `openai`, `antigravity`, and `agent-skills` are marked coming-soon, so only `claude` is selectable today.
8+
9+
## User-facing
10+
11+
Only the Claude provider is selectable for now. Codex, Antigravity and Open Skills appear greyed out as "coming soon" in the provider lens, and projects auto-detect Claude without a lens prompt.
12+
313
## 0.61.2
414

515
### Patch Changes

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@skill-map/cli",
3-
"version": "0.61.2",
3+
"version": "0.61.3",
44
"description": "skill-map reference implementation — kernel + CLI + adapters.",
55
"license": "MIT",
66
"type": "module",

ui/src/data/user-changelog.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
{
22
"schemaVersion": 1,
33
"entries": [
4+
{
5+
"version": "0.61.3",
6+
"date": "2026-06-21",
7+
"kind": "user-facing",
8+
"highlights": [
9+
{
10+
"body": "Only the Claude provider is selectable for now. Codex, Antigravity and Open Skills appear greyed out as \"coming soon\" in the provider lens, and projects auto-detect Claude without a lens prompt.",
11+
"packages": [
12+
"@skill-map/cli",
13+
"@skill-map/spec"
14+
]
15+
}
16+
]
17+
},
418
{
519
"version": "0.61.2",
620
"date": "2026-06-21",

0 commit comments

Comments
 (0)