Skip to content

Commit e31b347

Browse files
chore(release): 0.8.1-dev.1
## <small>0.8.1-dev.1 (2026-02-26)</small> * Merge branch 'feat/opencode-mcp-host-support' into dev ([793707d](793707d)) * Merge branch 'milestone/adding-mcp-hosts-skill' into dev ([bce3851](bce3851)) * Merge branch 'task/update-extension-guide' into milestone/mcp-docs-refresh ([d2a0df9](d2a0df9)) * Merge branch 'task/write-adapter-contract' into milestone/adding-mcp-hosts-skill ([c639322](c639322)) * Merge branch 'task/write-skill-md' into milestone/adding-mcp-hosts-skill ([d618f71](d618f71)) * Merge branch 'task/write-strategy-contract' into milestone/adding-mcp-hosts-skill ([13b195c](13b195c)) * Merge branch 'task/write-testing-fixtures' into milestone/adding-mcp-hosts-skill ([3cc4175](3cc4175)) * Merge pull request #47 from LittleCoinCoin/dev ([9d873aa](9d873aa)), closes [#47](#47) * fix(mcp-opencode): anchor JSONC comment regex in write_configuration ([a35d3a2](a35d3a2)) * fix(mcp-opencode): anchor JSONC comment regex to line start ([d8f3a75](d8f3a75)) * fix(mcp-opencode): make serialize() canonical-form; add test fixes ([ee1d915](ee1d915)) * test(mcp-fixtures): add opencode entry to canonical_configs.json ([5ae3b57](5ae3b57)) * test(mcp-fixtures): register opencode in host_registry.py ([734b3c0](734b3c0)) * feat(mcp-adapter): add OpenCodeAdapter with serialize transforms ([28e3bdf](28e3bdf)) * feat(mcp-fields): add OPENCODE_FIELDS constant ([b9ddf43](b9ddf43)) * feat(mcp-models): add opencode oauth fields to MCPServerConfig ([2bae600](2bae600)) * feat(mcp-registry): register OpenCodeAdapter in adapter registry ([20e0fc8](20e0fc8)) * feat(mcp-strategy): add OpenCodeHostStrategy with JSONC read/write ([8bb590a](8bb590a)) * feat(mcp-wiring): add opencode to backup and reporting ([7d0b075](7d0b075)) * feat(skill): add adapter contract reference ([336fced](336fced)) * feat(skill): add discovery guide reference ([8061c5f](8061c5f)) * feat(skill): add strategy contract reference ([cf9b807](cf9b807)) * feat(skill): add testing fixtures reference ([070894c](070894c)) * feat(skill): write SKILL.md with 5-step workflow ([8984a3a](8984a3a)) * docs(adding-mcp-hosts): use parallel research over priority ladder ([6f6165a](6f6165a)) * docs(mcp): document strategy, registration, and variant pattern ([21c30d5](21c30d5)) * docs(mcp): rewrite testing section with data-driven docs ([5fc6f97](5fc6f97)) * docs(mcp): rewrite testing section with data-driven infra ([24c6ebf](24c6ebf)) * docs(mcp): update adapter template to validate_filtered() ([69d61cc](69d61cc)) * docs(mcp): update field support matrix and field mapping documentation ([c08e064](c08e064)) * docs(mcp): update strategy template with interface docs ([0b83b6e](0b83b6e)) * docs(roadmap): add mcp-docs-refresh task files and gap analysis ([896f4d2](896f4d2)) * docs(roadmap): mark adding-mcp-hosts-skill campaign as done ([b7e6c95](b7e6c95)) * docs(roadmap): mark mcp-docs-refresh tasks as done ([fc07cd1](fc07cd1)) * chore: cleanup `__reports__/` ([1056e52](1056e52)) * chore: move skills directory location ([f739fed](f739fed)) * chore: update cs-playbook submodule ([c544cb3](c544cb3)) * chore(roadmap): add adding-mcp-hosts-skill campaign ([e48ea10](e48ea10)) * chore(skill): package adding-mcp-hosts skill ([e5fbfa2](e5fbfa2))
1 parent 9d873aa commit e31b347

2 files changed

Lines changed: 43 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
## <small>0.8.1-dev.1 (2026-02-26)</small>
2+
3+
* Merge branch 'feat/opencode-mcp-host-support' into dev ([793707d](https://github.com/CrackingShells/Hatch/commit/793707d))
4+
* Merge branch 'milestone/adding-mcp-hosts-skill' into dev ([bce3851](https://github.com/CrackingShells/Hatch/commit/bce3851))
5+
* Merge branch 'task/update-extension-guide' into milestone/mcp-docs-refresh ([d2a0df9](https://github.com/CrackingShells/Hatch/commit/d2a0df9))
6+
* Merge branch 'task/write-adapter-contract' into milestone/adding-mcp-hosts-skill ([c639322](https://github.com/CrackingShells/Hatch/commit/c639322))
7+
* Merge branch 'task/write-skill-md' into milestone/adding-mcp-hosts-skill ([d618f71](https://github.com/CrackingShells/Hatch/commit/d618f71))
8+
* Merge branch 'task/write-strategy-contract' into milestone/adding-mcp-hosts-skill ([13b195c](https://github.com/CrackingShells/Hatch/commit/13b195c))
9+
* Merge branch 'task/write-testing-fixtures' into milestone/adding-mcp-hosts-skill ([3cc4175](https://github.com/CrackingShells/Hatch/commit/3cc4175))
10+
* Merge pull request #47 from LittleCoinCoin/dev ([9d873aa](https://github.com/CrackingShells/Hatch/commit/9d873aa)), closes [#47](https://github.com/CrackingShells/Hatch/issues/47)
11+
* fix(mcp-opencode): anchor JSONC comment regex in write_configuration ([a35d3a2](https://github.com/CrackingShells/Hatch/commit/a35d3a2))
12+
* fix(mcp-opencode): anchor JSONC comment regex to line start ([d8f3a75](https://github.com/CrackingShells/Hatch/commit/d8f3a75))
13+
* fix(mcp-opencode): make serialize() canonical-form; add test fixes ([ee1d915](https://github.com/CrackingShells/Hatch/commit/ee1d915))
14+
* test(mcp-fixtures): add opencode entry to canonical_configs.json ([5ae3b57](https://github.com/CrackingShells/Hatch/commit/5ae3b57))
15+
* test(mcp-fixtures): register opencode in host_registry.py ([734b3c0](https://github.com/CrackingShells/Hatch/commit/734b3c0))
16+
* feat(mcp-adapter): add OpenCodeAdapter with serialize transforms ([28e3bdf](https://github.com/CrackingShells/Hatch/commit/28e3bdf))
17+
* feat(mcp-fields): add OPENCODE_FIELDS constant ([b9ddf43](https://github.com/CrackingShells/Hatch/commit/b9ddf43))
18+
* feat(mcp-models): add opencode oauth fields to MCPServerConfig ([2bae600](https://github.com/CrackingShells/Hatch/commit/2bae600))
19+
* feat(mcp-registry): register OpenCodeAdapter in adapter registry ([20e0fc8](https://github.com/CrackingShells/Hatch/commit/20e0fc8))
20+
* feat(mcp-strategy): add OpenCodeHostStrategy with JSONC read/write ([8bb590a](https://github.com/CrackingShells/Hatch/commit/8bb590a))
21+
* feat(mcp-wiring): add opencode to backup and reporting ([7d0b075](https://github.com/CrackingShells/Hatch/commit/7d0b075))
22+
* feat(skill): add adapter contract reference ([336fced](https://github.com/CrackingShells/Hatch/commit/336fced))
23+
* feat(skill): add discovery guide reference ([8061c5f](https://github.com/CrackingShells/Hatch/commit/8061c5f))
24+
* feat(skill): add strategy contract reference ([cf9b807](https://github.com/CrackingShells/Hatch/commit/cf9b807))
25+
* feat(skill): add testing fixtures reference ([070894c](https://github.com/CrackingShells/Hatch/commit/070894c))
26+
* feat(skill): write SKILL.md with 5-step workflow ([8984a3a](https://github.com/CrackingShells/Hatch/commit/8984a3a))
27+
* docs(adding-mcp-hosts): use parallel research over priority ladder ([6f6165a](https://github.com/CrackingShells/Hatch/commit/6f6165a))
28+
* docs(mcp): document strategy, registration, and variant pattern ([21c30d5](https://github.com/CrackingShells/Hatch/commit/21c30d5))
29+
* docs(mcp): rewrite testing section with data-driven docs ([5fc6f97](https://github.com/CrackingShells/Hatch/commit/5fc6f97))
30+
* docs(mcp): rewrite testing section with data-driven infra ([24c6ebf](https://github.com/CrackingShells/Hatch/commit/24c6ebf))
31+
* docs(mcp): update adapter template to validate_filtered() ([69d61cc](https://github.com/CrackingShells/Hatch/commit/69d61cc))
32+
* docs(mcp): update field support matrix and field mapping documentation ([c08e064](https://github.com/CrackingShells/Hatch/commit/c08e064))
33+
* docs(mcp): update strategy template with interface docs ([0b83b6e](https://github.com/CrackingShells/Hatch/commit/0b83b6e))
34+
* docs(roadmap): add mcp-docs-refresh task files and gap analysis ([896f4d2](https://github.com/CrackingShells/Hatch/commit/896f4d2))
35+
* docs(roadmap): mark adding-mcp-hosts-skill campaign as done ([b7e6c95](https://github.com/CrackingShells/Hatch/commit/b7e6c95))
36+
* docs(roadmap): mark mcp-docs-refresh tasks as done ([fc07cd1](https://github.com/CrackingShells/Hatch/commit/fc07cd1))
37+
* chore: cleanup `__reports__/` ([1056e52](https://github.com/CrackingShells/Hatch/commit/1056e52))
38+
* chore: move skills directory location ([f739fed](https://github.com/CrackingShells/Hatch/commit/f739fed))
39+
* chore: update cs-playbook submodule ([c544cb3](https://github.com/CrackingShells/Hatch/commit/c544cb3))
40+
* chore(roadmap): add adding-mcp-hosts-skill campaign ([e48ea10](https://github.com/CrackingShells/Hatch/commit/e48ea10))
41+
* chore(skill): package adding-mcp-hosts skill ([e5fbfa2](https://github.com/CrackingShells/Hatch/commit/e5fbfa2))
42+
143
## 0.8.0 (2026-02-20)
244

345
* Merge pull request #44 from LittleCoinCoin/dev ([1157922](https://github.com/CrackingShells/Hatch/commit/1157922)), closes [#44](https://github.com/CrackingShells/Hatch/issues/44)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hatch-xclam"
7-
version = "0.8.0"
7+
version = "0.8.1-dev.1"
88
description = "Package manager for the Cracking Shells ecosystem"
99
readme = "README.md"
1010
requires-python = ">=3.12"

0 commit comments

Comments
 (0)