@owlmeans/client-resource 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
@@ -70,10 +70,9 @@ Low-level browser storage interface:
70
70
  <!-- owlmeans:agent-guidance:start -->
71
71
  ## Agent guidance
72
72
 
73
- This package ships embedded Claude Code skills and GitHub Copilot instructions under
74
- `agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
75
- agent-skills installer to place them into your project's native locations
76
- (`.claude/skills/` and `.github/instructions/`):
73
+ This package ships embedded agent skills under `agent-meta/`. After installing your
74
+ `@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
75
+ your project's skill store (`.agents/skills/`):
77
76
 
78
77
  ```sh
79
78
  npx @owlmeans/agent-skills
@@ -1,8 +1,8 @@
1
1
  {
2
- "schemaVersion": 1,
2
+ "schemaVersion": 2,
3
3
  "package": "@owlmeans/client-resource",
4
- "version": "0.1.16-rc.0",
5
- "generatedAt": "2026-08-11T14:02:34.992Z",
4
+ "version": "0.1.16",
5
+ "generatedAt": "2026-08-14T10:14:48.856Z",
6
6
  "canonicalRepo": "https://github.com/owlmeans/common",
7
7
  "entries": [
8
8
  {
@@ -10,14 +10,7 @@
10
10
  "name": "client-resource",
11
11
  "category": "package-specific",
12
12
  "file": "skills/client-resource/SKILL.md",
13
- "canonicalPath": ".claude/skills/client-resource/SKILL.md"
14
- },
15
- {
16
- "kind": "instruction",
17
- "name": "client-resource",
18
- "category": "package-specific",
19
- "file": "instructions/client-resource.instructions.md",
20
- "canonicalPath": ".github/instructions/client-resource.instructions.md"
13
+ "canonicalPath": ".agents/skills/client-resource/SKILL.md"
21
14
  }
22
15
  ]
23
16
  }
@@ -8,7 +8,7 @@ user-invocable: false
8
8
  # @owlmeans/client-resource
9
9
 
10
10
  **Layer:** Client
11
- **Install:** `"@owlmeans/client-resource": "^0.1.16-rc.0"` in `dependencies`
11
+ **Install:** `"@owlmeans/client-resource": "^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-resource",
3
- "version": "0.1.16-rc.0",
3
+ "version": "0.1.16",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -22,9 +22,9 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@noble/hashes": "^1.5.0",
25
- "@owlmeans/client-context": "^0.1.16-rc.0",
26
- "@owlmeans/context": "^0.1.16-rc.0",
27
- "@owlmeans/resource": "^0.1.16-rc.0",
25
+ "@owlmeans/client-context": "^0.1.16",
26
+ "@owlmeans/context": "^0.1.16",
27
+ "@owlmeans/resource": "^0.1.16",
28
28
  "@scure/base": "^1.1.9"
29
29
  },
30
30
  "devDependencies": {
@@ -1,29 +0,0 @@
1
- ---
2
- description: "How to use @owlmeans/client-resource — client-side resource caching layer over @owlmeans/resource."
3
- applyTo: "**/*.ts, **/*.tsx"
4
- ---
5
- <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
6
-
7
- # @owlmeans/client-resource
8
-
9
- **Layer:** Client
10
- **Install:** `"@owlmeans/client-resource": "^0.1.16-rc.0"` in `dependencies`
11
-
12
- ## Key Exports
13
-
14
- | Export | Description |
15
- |--------|-------------|
16
- | `makeClientResource<T>()` | Factory for an in-memory client resource |
17
- | `ClientResource<T>` types | Resource interface |
18
- | Constants | Default cache aliases |
19
-
20
- ## Usage
21
-
22
- ```typescript
23
- import { makeClientResource } from '@owlmeans/client-resource'
24
- context.registerResource(makeClientResource<Project>('projects'))
25
- ```
26
-
27
- ## Depends On
28
-
29
- - `@owlmeans/resource`, `@owlmeans/client-context`