@owlmeans/web-flow 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
@@ -72,10 +72,9 @@ Extends `ClientFlowService` with:
72
72
  <!-- owlmeans:agent-guidance:start -->
73
73
  ## Agent guidance
74
74
 
75
- This package ships embedded Claude Code skills and GitHub Copilot instructions under
76
- `agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
77
- agent-skills installer to place them into your project's native locations
78
- (`.claude/skills/` and `.github/instructions/`):
75
+ This package ships embedded agent skills under `agent-meta/`. After installing your
76
+ `@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
77
+ your project's skill store (`.agents/skills/`):
79
78
 
80
79
  ```sh
81
80
  npx @owlmeans/agent-skills
@@ -1,8 +1,8 @@
1
1
  {
2
- "schemaVersion": 1,
2
+ "schemaVersion": 2,
3
3
  "package": "@owlmeans/web-flow",
4
- "version": "0.1.15",
5
- "generatedAt": "2026-08-07T17:06:32.917Z",
4
+ "version": "0.1.16",
5
+ "generatedAt": "2026-08-14T10:14:48.860Z",
6
6
  "canonicalRepo": "https://github.com/owlmeans/common",
7
7
  "entries": [
8
8
  {
@@ -10,14 +10,7 @@
10
10
  "name": "web-flow",
11
11
  "category": "package-specific",
12
12
  "file": "skills/web-flow/SKILL.md",
13
- "canonicalPath": ".claude/skills/web-flow/SKILL.md"
14
- },
15
- {
16
- "kind": "instruction",
17
- "name": "web-flow",
18
- "category": "package-specific",
19
- "file": "instructions/web-flow.instructions.md",
20
- "canonicalPath": ".github/instructions/web-flow.instructions.md"
13
+ "canonicalPath": ".agents/skills/web-flow/SKILL.md"
21
14
  }
22
15
  ]
23
16
  }
@@ -8,7 +8,7 @@ user-invocable: false
8
8
  # @owlmeans/web-flow
9
9
 
10
10
  **Layer:** Web (React)
11
- **Install:** `"@owlmeans/web-flow": "^0.1.15"` in `dependencies`
11
+ **Install:** `"@owlmeans/web-flow": "^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/web-flow",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -21,14 +21,14 @@
21
21
  }
22
22
  },
23
23
  "dependencies": {
24
- "@owlmeans/client": "^0.1.15",
25
- "@owlmeans/client-context": "^0.1.15",
26
- "@owlmeans/client-flow": "^0.1.15",
27
- "@owlmeans/client-entrypoint": "^0.1.15",
28
- "@owlmeans/client-resource": "^0.1.15",
29
- "@owlmeans/context": "^0.1.15",
30
- "@owlmeans/error": "^0.1.15",
31
- "@owlmeans/flow": "^0.1.15"
24
+ "@owlmeans/client": "^0.1.16",
25
+ "@owlmeans/client-context": "^0.1.16",
26
+ "@owlmeans/client-flow": "^0.1.16",
27
+ "@owlmeans/client-entrypoint": "^0.1.16",
28
+ "@owlmeans/client-resource": "^0.1.16",
29
+ "@owlmeans/context": "^0.1.16",
30
+ "@owlmeans/error": "^0.1.16",
31
+ "@owlmeans/flow": "^0.1.16"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "react": "*"
@@ -1,29 +0,0 @@
1
- ---
2
- description: "How to use @owlmeans/web-flow — web-specific flow execution and UI state management built on @owlmeans/client-flow."
3
- applyTo: "**/*.ts, **/*.tsx"
4
- ---
5
- <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
6
-
7
- # @owlmeans/web-flow
8
-
9
- **Layer:** Web (React)
10
- **Install:** `"@owlmeans/web-flow": "^0.1.15"` in `dependencies`
11
-
12
- ## Key Exports
13
-
14
- | Export | Description |
15
- |--------|-------------|
16
- | `makeWebFlowService()` | Web flow service factory |
17
- | Helpers | URL/query-string flow state helpers |
18
- | Constants | Flow service aliases |
19
-
20
- ## Usage
21
-
22
- ```typescript
23
- import { makeWebFlowService } from '@owlmeans/web-flow'
24
- context.registerService(makeWebFlowService())
25
- ```
26
-
27
- ## Depends On
28
-
29
- - `@owlmeans/flow`, `@owlmeans/client-flow`, `@owlmeans/web-client`