Skip to content

Commit cce87a6

Browse files
committed
vb
1 parent cc5bcbf commit cce87a6

File tree

8 files changed

+21
-18
lines changed

8 files changed

+21
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.12.0] - 2026-03-27
6+
57
### Added
68

79
- **`SkillsCapability`**: New pydantic-ai capability wrapping `SkillToolset` + system prompt. Provides a single-line integration path via `Agent(capabilities=[SkillsCapability(...)])`. `SkillToolset` remains available for advanced use cases.
@@ -276,7 +278,8 @@
276278
- **Chat TUI**: Terminal-based chat interface using Textual
277279
- **Distributable skill packages**: Workspace members for brave-search, image-generation, and code-execution skills
278280

279-
[Unreleased]: https://github.com/ggozad/haiku.skills/compare/0.11.0...HEAD
281+
[Unreleased]: https://github.com/ggozad/haiku.skills/compare/0.12.0...HEAD
282+
[0.12.0]: https://github.com/ggozad/haiku.skills/compare/0.11.0...0.12.0
280283
[0.11.0]: https://github.com/ggozad/haiku.skills/compare/0.10.0...0.11.0
281284
[0.10.0]: https://github.com/ggozad/haiku.skills/compare/0.9.1...0.10.0
282285
[0.9.1]: https://github.com/ggozad/haiku.skills/compare/0.9.0...0.9.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "haiku.skills"
44
description = "Skill-powered AI agents implementing the Agent Skills specification with pydantic-ai"
5-
version = "0.11.0"
5+
version = "0.12.0"
66
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
77
license = { text = "MIT" }
88
readme = { file = "README.md", content-type = "text/markdown" }

skills/code-execution/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "haiku-skills-code-execution"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "Code execution skill for haiku.skills"
55
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
66
license = { text = "MIT" }
@@ -15,7 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.12",
1616
"Typing :: Typed",
1717
]
18-
dependencies = ["haiku.skills>=0.11.0", "pydantic-monty>=0.0.8"]
18+
dependencies = ["haiku.skills>=0.12.0", "pydantic-monty>=0.0.8"]
1919

2020
[project.urls]
2121
Homepage = "https://github.com/ggozad/haiku.skills"

skills/gmail/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "haiku-skills-gmail"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "Gmail skill for haiku.skills"
55
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
66
license = { text = "MIT" }
@@ -16,7 +16,7 @@ classifiers = [
1616
"Typing :: Typed",
1717
]
1818
dependencies = [
19-
"haiku.skills>=0.11.0",
19+
"haiku.skills>=0.12.0",
2020
"google-api-python-client>=2.0.0",
2121
"google-auth-oauthlib>=1.0.0",
2222
"google-auth-httplib2>=0.2.0",

skills/image-generation/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "haiku-skills-image-generation"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "Image generation skill for haiku.skills"
55
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
66
license = { text = "MIT" }
@@ -15,7 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.12",
1616
"Typing :: Typed",
1717
]
18-
dependencies = ["haiku.skills>=0.11.0", "httpx>=0.28.0"]
18+
dependencies = ["haiku.skills>=0.12.0", "httpx>=0.28.0"]
1919

2020
[project.urls]
2121
Homepage = "https://github.com/ggozad/haiku.skills"

skills/notifications/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "haiku-skills-notifications"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "Push notifications skill for haiku.skills using ntfy.sh"
55
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
66
license = { text = "MIT" }
@@ -15,7 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.12",
1616
"Typing :: Typed",
1717
]
18-
dependencies = ["haiku.skills>=0.11.0", "httpx>=0.28.0"]
18+
dependencies = ["haiku.skills>=0.12.0", "httpx>=0.28.0"]
1919

2020
[project.urls]
2121
Homepage = "https://github.com/ggozad/haiku.skills"

skills/web/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "haiku-skills-web"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "Web search and page fetching skill for haiku.skills"
55
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
66
license = { text = "MIT" }
@@ -15,7 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.12",
1616
"Typing :: Typed",
1717
]
18-
dependencies = ["haiku.skills>=0.11.0", "trafilatura>=2.0.0", "httpx>=0.28.0"]
18+
dependencies = ["haiku.skills>=0.12.0", "trafilatura>=2.0.0", "httpx>=0.28.0"]
1919

2020
[project.urls]
2121
Homepage = "https://github.com/ggozad/haiku.skills"

uv.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)