@erclx/aitk 0.70.0 → 0.71.0

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aitk",
3
3
  "description": "Automated governance, versioning, and discovery tools for Claude Code.",
4
- "version": "0.70.0",
4
+ "version": "0.71.0",
5
5
  "author": {
6
6
  "name": "Eric Le",
7
7
  "url": "https://github.com/erclx"
@@ -8,6 +8,8 @@ description: Enforce planning standards before implementation
8
8
 
9
9
  - Analyze requests and output a numbered implementation plan before execution.
10
10
  - Challenge ambiguous or over-engineered requests before implementation.
11
+ - Search the project, its dependencies, and the standard library for an existing implementation before writing new code.
12
+ - State where the search ran and why each candidate was rejected. Do not assert a search without naming its results.
11
13
  - Propose the simplest solution that satisfies the requirement before implementing complex patterns.
12
14
  - Write or update tests as part of every implementation plan.
13
15
  - Do not modify code without a confirmed plan.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@erclx/aitk",
3
3
  "type": "module",
4
- "version": "0.70.0",
4
+ "version": "0.71.0",
5
5
  "description": "Infrastructure and quality tooling for developer workflows",
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -11,7 +11,7 @@ Skills give Claude Code domain-specific constraints and rules inline, so it can
11
11
 
12
12
  ## Scope
13
13
 
14
- Governs a skill folder under `skills/` as one artifact: `SKILL.md`, its sibling `REQUIREMENT.md`, and the bundled reference, script, and asset folders beside them.
14
+ Governs a skill folder under `skills/` as one artifact: `SKILL.md`, its siblings `REQUIREMENT.md` and `EVAL.md`, and the bundled reference, script, and asset folders beside them.
15
15
 
16
16
  Does not govern:
17
17
 
@@ -88,7 +88,9 @@ allowed-tools: <tools required>
88
88
 
89
89
  ## Structure
90
90
 
91
- - Skill is a folder named in kebab-case containing `SKILL.md` (required), `REQUIREMENT.md` (required), `scripts/` (optional), `references/` (optional), `assets/` (optional)
91
+ - Skill is a folder named in kebab-case containing `SKILL.md` (required), `REQUIREMENT.md` (required), `EVAL.md` (optional), `scripts/` (optional), `references/` (optional), `assets/` (optional)
92
+ - Name a file sitting directly in the skill folder in capitals and a bundled folder in lowercase, so the parts a reader opens are distinct from the ones a skill loads
93
+ - `EVAL.md` holds prompts and a judging rubric a person runs by hand, so a skill carrying one needs no runner beside it
92
94
  - `SKILL.md` must start with YAML frontmatter between `---` delimiters
93
95
  - No `README.md` inside the skill folder
94
96
  - No spaces, capitals, or underscores in folder or skill name