@owlmeans/test 0.1.16-rc.0 → 0.1.16

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/README.md CHANGED
@@ -13,10 +13,9 @@ Tests must be located at `packages/<pkg>/tests/`, named `*.spec.ts`. See the `te
13
13
  <!-- owlmeans:agent-guidance:start -->
14
14
  ## Agent guidance
15
15
 
16
- This package ships embedded Claude Code skills and GitHub Copilot instructions under
17
- `agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
18
- agent-skills installer to place them into your project's native locations
19
- (`.claude/skills/` and `.github/instructions/`):
16
+ This package ships embedded agent skills under `agent-meta/`. After installing your
17
+ `@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
18
+ your project's skill store (`.agents/skills/`):
20
19
 
21
20
  ```sh
22
21
  npx @owlmeans/agent-skills
@@ -1,8 +1,8 @@
1
1
  {
2
- "schemaVersion": 1,
2
+ "schemaVersion": 2,
3
3
  "package": "@owlmeans/test",
4
- "version": "0.1.16-rc.0",
5
- "generatedAt": "2026-08-11T14:02:34.972Z",
4
+ "version": "0.1.16",
5
+ "generatedAt": "2026-08-14T10:14:48.848Z",
6
6
  "canonicalRepo": "https://github.com/owlmeans/common",
7
7
  "entries": [
8
8
  {
@@ -10,21 +10,14 @@
10
10
  "name": "testing-overview",
11
11
  "category": "multi-package",
12
12
  "file": "skills/testing-overview/SKILL.md",
13
- "canonicalPath": ".claude/skills/testing-overview/SKILL.md"
13
+ "canonicalPath": ".agents/skills/testing-overview/SKILL.md"
14
14
  },
15
15
  {
16
16
  "kind": "skill",
17
17
  "name": "testing-unit",
18
18
  "category": "package-specific",
19
19
  "file": "skills/testing-unit/SKILL.md",
20
- "canonicalPath": ".claude/skills/testing-unit/SKILL.md"
21
- },
22
- {
23
- "kind": "instruction",
24
- "name": "testing-unit",
25
- "category": "package-specific",
26
- "file": "instructions/testing-unit.instructions.md",
27
- "canonicalPath": ".github/instructions/testing-unit.instructions.md"
20
+ "canonicalPath": ".agents/skills/testing-unit/SKILL.md"
28
21
  }
29
22
  ]
30
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owlmeans/test",
3
- "version": "0.1.16-rc.0",
3
+ "version": "0.1.16",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -21,10 +21,10 @@
21
21
  }
22
22
  },
23
23
  "dependencies": {
24
- "@owlmeans/context": "^0.1.16-rc.0"
24
+ "@owlmeans/context": "^0.1.16"
25
25
  },
26
26
  "devDependencies": {
27
- "@owlmeans/dep-config": "^0.1.16-rc.0",
27
+ "@owlmeans/dep-config": "^0.1.16",
28
28
  "@types/bun": "^1.3.14",
29
29
  "nodemon": "^3.1.14",
30
30
  "typescript": "^6.0.3"
@@ -1,16 +0,0 @@
1
- ---
2
- applyTo: "**/*.test.ts, **/*.spec.ts, **/*.ts"
3
- ---
4
- <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
5
-
6
- # Category A — Unit Tests (no mocks)
7
-
8
- - Tests in `<your-package>/tests/*.spec.ts`. Use `bun:test` (`describe`, `test`, `expect`).
9
- - Build a real context once in `tests/context.ts` and export a helper specs call. No mocks.
10
- - Sibling packages are imported normally. If you feel the urge to mock one, you're in the wrong category — move to integration instead.
11
- - Cover `.claude/skills/<pkg>/SKILL.md` and `README.md` cases first.
12
- - Max 3-4 tests per method/function.
13
- - Don't test utils, types, or context plumbing.
14
- - Per-package `package.json` script: `"test": "bun test ./tests"`.
15
-
16
- See `.claude/skills/testing-unit/SKILL.md` for the full pattern.