@owlmeans/client-context 0.1.15 → 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
@@ -52,10 +52,9 @@ Extends `BasicContext<C>` with:
52
52
  <!-- owlmeans:agent-guidance:start -->
53
53
  ## Agent guidance
54
54
 
55
- This package ships embedded Claude Code skills and GitHub Copilot instructions under
56
- `agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
57
- agent-skills installer to place them into your project's native locations
58
- (`.claude/skills/` and `.github/instructions/`):
55
+ This package ships embedded agent skills under `agent-meta/`. After installing your
56
+ `@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
57
+ your project's skill store (`.agents/skills/`):
59
58
 
60
59
  ```sh
61
60
  npx @owlmeans/agent-skills
@@ -1,8 +1,8 @@
1
1
  {
2
- "schemaVersion": 1,
2
+ "schemaVersion": 2,
3
3
  "package": "@owlmeans/client-context",
4
- "version": "0.1.15",
5
- "generatedAt": "2026-08-07T17:06:32.914Z",
4
+ "version": "0.1.16",
5
+ "generatedAt": "2026-08-14T10:14:48.858Z",
6
6
  "canonicalRepo": "https://github.com/owlmeans/common",
7
7
  "entries": [
8
8
  {
@@ -10,14 +10,7 @@
10
10
  "name": "client-context",
11
11
  "category": "package-specific",
12
12
  "file": "skills/client-context/SKILL.md",
13
- "canonicalPath": ".claude/skills/client-context/SKILL.md"
14
- },
15
- {
16
- "kind": "instruction",
17
- "name": "client-context",
18
- "category": "package-specific",
19
- "file": "instructions/client-context.instructions.md",
20
- "canonicalPath": ".github/instructions/client-context.instructions.md"
13
+ "canonicalPath": ".agents/skills/client-context/SKILL.md"
21
14
  }
22
15
  ]
23
16
  }
@@ -8,7 +8,7 @@ user-invocable: false
8
8
  # @owlmeans/client-context
9
9
 
10
10
  **Layer:** Client
11
- **Install:** `"@owlmeans/client-context": "^0.1.15"` in `dependencies`
11
+ **Install:** `"@owlmeans/client-context": "^0.1.16"` in `dependencies`
12
12
 
13
13
  ## Key Exports
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owlmeans/client-context",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -28,12 +28,12 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@owlmeans/api": "^0.1.15",
32
- "@owlmeans/client-config": "^0.1.15",
33
- "@owlmeans/config": "^0.1.15",
34
- "@owlmeans/context": "^0.1.15",
35
- "@owlmeans/i18n": "^0.1.15",
36
- "@owlmeans/route": "^0.1.15"
31
+ "@owlmeans/api": "^0.1.16",
32
+ "@owlmeans/client-config": "^0.1.16",
33
+ "@owlmeans/config": "^0.1.16",
34
+ "@owlmeans/context": "^0.1.16",
35
+ "@owlmeans/i18n": "^0.1.16",
36
+ "@owlmeans/route": "^0.1.16"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@owlmeans/dep-config": "workspace:*",
@@ -1,33 +0,0 @@
1
- ---
2
- description: "How to use @owlmeans/client-context — client-side context factory used as the base for web and native contexts."
3
- applyTo: "**/*.ts, **/*.tsx"
4
- ---
5
- <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
6
-
7
- # @owlmeans/client-context
8
-
9
- **Layer:** Client
10
- **Install:** `"@owlmeans/client-context": "^0.1.15"` in `dependencies`
11
-
12
- ## Key Exports
13
-
14
- | Export | Description |
15
- |--------|-------------|
16
- | `makeClientContext` | Client context factory |
17
- | `Context` / `Config` (client) types | Client interfaces |
18
- | Constants | Default aliases |
19
-
20
- ## Subpath Exports
21
-
22
- - `./utils`
23
-
24
- ## Usage
25
-
26
- ```typescript
27
- import { makeClientContext } from '@owlmeans/client-context'
28
- const context = makeClientContext<Config, Context>(cfg)
29
- ```
30
-
31
- ## Depends On
32
-
33
- - `@owlmeans/context`, `@owlmeans/client-config`, `@owlmeans/client-entrypoint`, `@owlmeans/client-route`