@owlmeans/socket 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
@@ -86,10 +86,9 @@ Default RPC call timeout in milliseconds (60 000).
86
86
  <!-- owlmeans:agent-guidance:start -->
87
87
  ## Agent guidance
88
88
 
89
- This package ships embedded Claude Code skills and GitHub Copilot instructions under
90
- `agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
91
- agent-skills installer to place them into your project's native locations
92
- (`.claude/skills/` and `.github/instructions/`):
89
+ This package ships embedded agent skills under `agent-meta/`. After installing your
90
+ `@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
91
+ your project's skill store (`.agents/skills/`):
93
92
 
94
93
  ```sh
95
94
  npx @owlmeans/agent-skills
@@ -1,8 +1,8 @@
1
1
  {
2
- "schemaVersion": 1,
2
+ "schemaVersion": 2,
3
3
  "package": "@owlmeans/socket",
4
- "version": "0.1.16-rc.0",
5
- "generatedAt": "2026-08-11T14:02:34.982Z",
4
+ "version": "0.1.16",
5
+ "generatedAt": "2026-08-14T10:14:48.853Z",
6
6
  "canonicalRepo": "https://github.com/owlmeans/common",
7
7
  "entries": [
8
8
  {
@@ -10,14 +10,7 @@
10
10
  "name": "socket",
11
11
  "category": "package-specific",
12
12
  "file": "skills/socket/SKILL.md",
13
- "canonicalPath": ".claude/skills/socket/SKILL.md"
14
- },
15
- {
16
- "kind": "instruction",
17
- "name": "socket",
18
- "category": "package-specific",
19
- "file": "instructions/socket.instructions.md",
20
- "canonicalPath": ".github/instructions/socket.instructions.md"
13
+ "canonicalPath": ".agents/skills/socket/SKILL.md"
21
14
  }
22
15
  ]
23
16
  }
@@ -8,7 +8,7 @@ user-invocable: false
8
8
  # @owlmeans/socket
9
9
 
10
10
  **Layer:** Core
11
- **Install:** `"@owlmeans/socket": "^0.1.16-rc.0"` in `dependencies`
11
+ **Install:** `"@owlmeans/socket": "^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/socket",
3
- "version": "0.1.16-rc.0",
3
+ "version": "0.1.16",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -21,9 +21,9 @@
21
21
  }
22
22
  },
23
23
  "dependencies": {
24
- "@owlmeans/auth": "^0.1.16-rc.0",
25
- "@owlmeans/basic-ids": "^0.1.16-rc.0",
26
- "@owlmeans/error": "^0.1.16-rc.0"
24
+ "@owlmeans/auth": "^0.1.16",
25
+ "@owlmeans/basic-ids": "^0.1.16",
26
+ "@owlmeans/error": "^0.1.16"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@owlmeans/dep-config": "workspace:*",
@@ -1,31 +0,0 @@
1
- ---
2
- description: "How to use @owlmeans/socket — abstract WebSocket protocol model, message types, and socket errors shared between client-socket and server-socket."
3
- applyTo: "**/*.ts, **/*.tsx"
4
- ---
5
- <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
6
-
7
- # @owlmeans/socket
8
-
9
- **Layer:** Core
10
- **Install:** `"@owlmeans/socket": "^0.1.16-rc.0"` in `dependencies`
11
-
12
- ## Key Exports
13
-
14
- | Export | Description |
15
- |--------|-------------|
16
- | `Message` types | Wire message shape (envelope, payload, headers) |
17
- | `SocketEvent` types | Socket lifecycle events |
18
- | Errors | Typed socket errors |
19
- | Constants | Message types, channel names |
20
- | Helpers | Encode/decode messages |
21
-
22
- ## Usage
23
-
24
- ```typescript
25
- import type { Message } from '@owlmeans/socket'
26
- const msg: Message = { type: 'subscribe', channel: 'projects', payload: { entityId } }
27
- ```
28
-
29
- ## Depends On
30
-
31
- - `@owlmeans/error`, `@owlmeans/i18n`, `@owlmeans/basic-envelope`