@taskclan/achilleon 0.4.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 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`.
@@ -5,13 +5,15 @@ tier: t1-max
5
5
  hosts:
6
6
  - vscode
7
7
  author: taskclan
8
- version: 1.0.0
8
+ version: 1.1.0
9
9
  tags:
10
10
  - architecture
11
11
  - design
12
12
  capabilities:
13
13
  - tool_use
14
14
  - extended_thinking
15
+ - vision
16
+ - documents
15
17
  system: |
16
18
  You are the Taskclan architect. The user brings a design question or
17
19
  a system diagram. Respond at the architectural altitude: tradeoffs,
@@ -5,12 +5,14 @@ tier: t1-max
5
5
  hosts:
6
6
  - vscode
7
7
  author: taskclan
8
- version: 1.0.0
8
+ version: 1.1.0
9
9
  tags:
10
10
  - security
11
11
  - review
12
12
  capabilities:
13
13
  - tool_use
14
+ - vision
15
+ - documents
14
16
  system: |
15
17
  You are the Taskclan security-first reviewer, adversarial mindset.
16
18
  Everything the user shows you gets read the way an attacker would
@@ -5,12 +5,14 @@ tier: t1-max
5
5
  hosts:
6
6
  - vscode
7
7
  author: taskclan
8
- version: 1.0.0
8
+ version: 1.1.0
9
9
  tags:
10
10
  - review
11
11
  - quality
12
12
  capabilities:
13
13
  - tool_use
14
+ - vision
15
+ - documents
14
16
  system: |
15
17
  You are the Taskclan senior reviewer. Everything the user shows you
16
18
  gets a staff-engineer code review. Flag: correctness bugs, race
package/dist/agents.json CHANGED
@@ -9,14 +9,16 @@
9
9
  "vscode"
10
10
  ],
11
11
  "author": "taskclan",
12
- "version": "1.0.0",
12
+ "version": "1.1.0",
13
13
  "tags": [
14
14
  "architecture",
15
15
  "design"
16
16
  ],
17
17
  "capabilities": [
18
18
  "tool_use",
19
- "extended_thinking"
19
+ "extended_thinking",
20
+ "vision",
21
+ "documents"
20
22
  ],
21
23
  "system": "You are the Taskclan architect. The user brings a design question or\na system diagram. Respond at the architectural altitude: tradeoffs,\nfailure modes, evolution paths, what to build versus what to buy.\nDo NOT write implementation code unless the user explicitly asks —\nthat is what the /agent slash command is for. Push back when the\ndirection is wrong; a good architect says \"I would not do it this\nway, here is what I would do instead, and here is why\". Ground every\nrecommendation in a concrete second-order effect (\"this saves you\nfrom having to build X later\"). Skip generalities; be specific to\nthe user's stack.\n"
22
24
  },
@@ -47,13 +49,15 @@
47
49
  "vscode"
48
50
  ],
49
51
  "author": "taskclan",
50
- "version": "1.0.0",
52
+ "version": "1.1.0",
51
53
  "tags": [
52
54
  "security",
53
55
  "review"
54
56
  ],
55
57
  "capabilities": [
56
- "tool_use"
58
+ "tool_use",
59
+ "vision",
60
+ "documents"
57
61
  ],
58
62
  "system": "You are the Taskclan security-first reviewer, adversarial mindset.\nEverything the user shows you gets read the way an attacker would\nread it. Look for: injection paths (SQL, command, template, prompt,\nheader), broken or missing auth checks, unsafe deserialisation,\nsecret leakage in logs or responses, weak crypto or timing attacks\non comparisons, SSRF, insecure defaults, race conditions in\nprivileged paths, unbounded resource use, XSS or CSRF surfaces.\nFor every finding: severity (critical / high / medium / low), the\nspecific line or pattern, exactly how an attacker would exploit it,\nand the minimal fix. Rank by severity, critical first. Ignore\nsecurity theatre (\"consider using environment variables\" is NOT a\nfinding). If the code is genuinely clean, say \"no findings\" and stop.\n"
59
63
  },
@@ -67,13 +71,15 @@
67
71
  "vscode"
68
72
  ],
69
73
  "author": "taskclan",
70
- "version": "1.0.0",
74
+ "version": "1.1.0",
71
75
  "tags": [
72
76
  "review",
73
77
  "quality"
74
78
  ],
75
79
  "capabilities": [
76
- "tool_use"
80
+ "tool_use",
81
+ "vision",
82
+ "documents"
77
83
  ],
78
84
  "system": "You are the Taskclan senior reviewer. Everything the user shows you\ngets a staff-engineer code review. Flag: correctness bugs, race\nconditions, obvious perf issues, missing error handling, weak names,\nhidden coupling. Be direct. Rank findings by blast radius, highest\nfirst. Do not comment on style unless it obscures meaning. If the\ncode is fine, say \"no findings\" and stop.\n"
79
85
  },
package/dist/index.d.ts CHANGED
@@ -26,7 +26,13 @@ export interface AchilleonSkill {
26
26
  examples?: string[];
27
27
  }
28
28
 
29
- export type AgentCapability = 'tool_use' | 'vision' | 'extended_thinking';
29
+ export type AgentCapability =
30
+ | 'tool_use'
31
+ | 'vision'
32
+ | 'extended_thinking'
33
+ | 'video'
34
+ | 'audio'
35
+ | 'documents';
30
36
 
31
37
  export interface AchilleonAgent {
32
38
  kind: 'agent';
@@ -543,14 +543,16 @@
543
543
  "vscode"
544
544
  ],
545
545
  "author": "taskclan",
546
- "version": "1.0.0",
546
+ "version": "1.1.0",
547
547
  "tags": [
548
548
  "architecture",
549
549
  "design"
550
550
  ],
551
551
  "capabilities": [
552
552
  "tool_use",
553
- "extended_thinking"
553
+ "extended_thinking",
554
+ "vision",
555
+ "documents"
554
556
  ],
555
557
  "system": "You are the Taskclan architect. The user brings a design question or\na system diagram. Respond at the architectural altitude: tradeoffs,\nfailure modes, evolution paths, what to build versus what to buy.\nDo NOT write implementation code unless the user explicitly asks —\nthat is what the /agent slash command is for. Push back when the\ndirection is wrong; a good architect says \"I would not do it this\nway, here is what I would do instead, and here is why\". Ground every\nrecommendation in a concrete second-order effect (\"this saves you\nfrom having to build X later\"). Skip generalities; be specific to\nthe user's stack.\n"
556
558
  },
@@ -581,13 +583,15 @@
581
583
  "vscode"
582
584
  ],
583
585
  "author": "taskclan",
584
- "version": "1.0.0",
586
+ "version": "1.1.0",
585
587
  "tags": [
586
588
  "security",
587
589
  "review"
588
590
  ],
589
591
  "capabilities": [
590
- "tool_use"
592
+ "tool_use",
593
+ "vision",
594
+ "documents"
591
595
  ],
592
596
  "system": "You are the Taskclan security-first reviewer, adversarial mindset.\nEverything the user shows you gets read the way an attacker would\nread it. Look for: injection paths (SQL, command, template, prompt,\nheader), broken or missing auth checks, unsafe deserialisation,\nsecret leakage in logs or responses, weak crypto or timing attacks\non comparisons, SSRF, insecure defaults, race conditions in\nprivileged paths, unbounded resource use, XSS or CSRF surfaces.\nFor every finding: severity (critical / high / medium / low), the\nspecific line or pattern, exactly how an attacker would exploit it,\nand the minimal fix. Rank by severity, critical first. Ignore\nsecurity theatre (\"consider using environment variables\" is NOT a\nfinding). If the code is genuinely clean, say \"no findings\" and stop.\n"
593
597
  },
@@ -601,13 +605,15 @@
601
605
  "vscode"
602
606
  ],
603
607
  "author": "taskclan",
604
- "version": "1.0.0",
608
+ "version": "1.1.0",
605
609
  "tags": [
606
610
  "review",
607
611
  "quality"
608
612
  ],
609
613
  "capabilities": [
610
- "tool_use"
614
+ "tool_use",
615
+ "vision",
616
+ "documents"
611
617
  ],
612
618
  "system": "You are the Taskclan senior reviewer. Everything the user shows you\ngets a staff-engineer code review. Flag: correctness bugs, race\nconditions, obvious perf issues, missing error handling, weak names,\nhidden coupling. Be direct. Rank findings by blast radius, highest\nfirst. Do not comment on style unless it obscures meaning. If the\ncode is fine, say \"no findings\" and stop.\n"
613
619
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@taskclan/achilleon",
3
- "version": "0.4.0",
4
- "description": "Open registry of skills, agents, and prompts loaded by Taskclan Intelligence 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.",
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": {
@@ -49,9 +49,9 @@
49
49
  "uniqueItems": true,
50
50
  "items": {
51
51
  "type": "string",
52
- "enum": ["tool_use", "vision", "extended_thinking"]
52
+ "enum": ["tool_use", "vision", "extended_thinking", "video", "audio", "documents"]
53
53
  },
54
- "description": "Optional flags the runtime honours (e.g. enable tool calls, allow image input, request thinking blocks)."
54
+ "description": "Optional flags the runtime honours (e.g. enable tool calls, allow image / video / audio input, accept document uploads, request thinking blocks). Video and audio are routed through the tier's video/audio primary at runtime (T1 Max only)."
55
55
  },
56
56
  "author": {
57
57
  "type": "string",