@taskclan/achilleon 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +60 -0
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@taskclan/achilleon` land here. Format follows
|
|
4
|
+
[keep-a-changelog](https://keepachangelog.com/en/1.1.0/). Versions
|
|
5
|
+
are [semver](https://semver.org).
|
|
6
|
+
|
|
7
|
+
## 0.5.1 — 2026-07-24
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **Docs-only ship** — `CHANGELOG.md` is now included in the published tarball so it renders on the npm package page. No code changes.
|
|
12
|
+
|
|
13
|
+
## 0.5.0 — 2026-07-23
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- **New agent capabilities** in the schema: `video`, `audio`, `documents`.
|
|
18
|
+
Alongside the existing `tool_use`, `vision`, and `extended_thinking`, agents
|
|
19
|
+
can now declare they accept video / audio inputs or document uploads. The
|
|
20
|
+
runtime routes these declarations through T1 Max's video / audio primary
|
|
21
|
+
(Gemini 2.5 Pro) when appropriate.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- `AgentCapability` TypeScript union type in `dist/index.d.ts` extended to
|
|
26
|
+
include the three new values.
|
|
27
|
+
|
|
28
|
+
## 0.4.0 — 2026-07-22
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- **`prompts/*.yml` kind** — parameterised prompt templates as a third
|
|
33
|
+
registry alongside skills and agents. Each template declares its variables
|
|
34
|
+
(name, description, required, default) and gets exported per-editor.
|
|
35
|
+
|
|
36
|
+
## 0.3.0 — 2026-07-22
|
|
37
|
+
|
|
38
|
+
### Added
|
|
39
|
+
|
|
40
|
+
- **npm publish** — `@taskclan/achilleon` now installable via
|
|
41
|
+
`npm i @taskclan/achilleon`. Ships pre-built dist/ bundles per editor
|
|
42
|
+
(Cursor, Continue.dev, Claude Code, Windsurf, Cline, Zed, raw markdown) plus
|
|
43
|
+
typed JS entrypoints and a JSON registry.
|
|
44
|
+
- **CI drift check** — `npm run export` on every commit; fails the build if
|
|
45
|
+
`dist/` differs from the source YAML.
|
|
46
|
+
|
|
47
|
+
## 0.2.0 — 2026-07-21
|
|
48
|
+
|
|
49
|
+
### Added
|
|
50
|
+
|
|
51
|
+
- **Exporters** for Windsurf, Cline, and Zed alongside the initial Cursor +
|
|
52
|
+
Continue.dev + Claude Code targets.
|
|
53
|
+
|
|
54
|
+
## 0.1.0 — 2026-07-21
|
|
55
|
+
|
|
56
|
+
### Added
|
|
57
|
+
|
|
58
|
+
- **Initial registry.** 12 skills + 2 agents as YAML files, validated against
|
|
59
|
+
a JSON Schema (Ajv), exported to Cursor + Continue.dev + Claude Code
|
|
60
|
+
editor-specific bundles via `scripts/export.mjs`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taskclan/achilleon",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Open registry of skills, agents, and prompts loaded by Taskclan Intelligence
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "Open registry of skills, agents, and prompts loaded by Taskclan Intelligence \u2014 and installable in Cursor, Continue.dev, Claude Code, Windsurf, Cline, Zed, or anywhere else you can paste a prompt. Contribute a YAML file to add or improve an entry.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Taskclan Inc.",
|
|
7
7
|
"homepage": "https://taskclan.com/skills",
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"prompts",
|
|
61
61
|
"schema",
|
|
62
62
|
"README.md",
|
|
63
|
+
"CHANGELOG.md",
|
|
63
64
|
"LICENSE"
|
|
64
65
|
],
|
|
65
66
|
"publishConfig": {
|