@owlmeans/client-flow 0.1.7 → 0.1.8
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
|
@@ -66,3 +66,20 @@ Creates a flow client with methods:
|
|
|
66
66
|
- [`@owlmeans/flow`](../flow) — `FlowModel`, `FlowConfig`, `FlowTransition` types
|
|
67
67
|
- [`@owlmeans/web-flow`](../web-flow) — React hook (`useFlow`) built on top of `createFlowClient`
|
|
68
68
|
- [`@owlmeans/client-resource`](../client-resource) — used internally to persist flow state
|
|
69
|
+
|
|
70
|
+
<!-- owlmeans:agent-guidance:start -->
|
|
71
|
+
## Agent guidance
|
|
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/`):
|
|
77
|
+
|
|
78
|
+
```sh
|
|
79
|
+
npx @owlmeans/agent-skills
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
The embedded files are version-matched to this package release. Do not edit them
|
|
83
|
+
directly — they are regenerated on each publish. To contribute guidance edits,
|
|
84
|
+
open a PR against the source monorepo.
|
|
85
|
+
<!-- owlmeans:agent-guidance:end -->
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "How to use @owlmeans/client-flow — client-side flow execution service that drives @owlmeans/flow definitions through state transitions."
|
|
3
|
+
applyTo: "**/*.ts, **/*.tsx"
|
|
4
|
+
---
|
|
5
|
+
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
6
|
+
|
|
7
|
+
# @owlmeans/client-flow
|
|
8
|
+
|
|
9
|
+
**Layer:** Client
|
|
10
|
+
**Install:** `"@owlmeans/client-flow": "^0.1.8"` in `dependencies`
|
|
11
|
+
|
|
12
|
+
## Key Exports
|
|
13
|
+
|
|
14
|
+
| Export | Description |
|
|
15
|
+
|--------|-------------|
|
|
16
|
+
| `makeFlowService()` | Client flow execution service factory |
|
|
17
|
+
| `client` helpers | Flow client/runner |
|
|
18
|
+
| Constants | Flow service aliases |
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { makeFlowService } from '@owlmeans/client-flow'
|
|
24
|
+
context.registerService(makeFlowService())
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Depends On
|
|
28
|
+
|
|
29
|
+
- `@owlmeans/flow`, `@owlmeans/client-context`, `@owlmeans/client-entrypoint`
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"package": "@owlmeans/client-flow",
|
|
4
|
+
"version": "0.1.8",
|
|
5
|
+
"generatedAt": "2026-06-11T16:30:27.160Z",
|
|
6
|
+
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
|
+
"entries": [
|
|
8
|
+
{
|
|
9
|
+
"kind": "skill",
|
|
10
|
+
"name": "client-flow",
|
|
11
|
+
"category": "package-specific",
|
|
12
|
+
"file": "skills/client-flow/SKILL.md",
|
|
13
|
+
"canonicalPath": ".claude/skills/client-flow/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"kind": "instruction",
|
|
17
|
+
"name": "client-flow",
|
|
18
|
+
"category": "package-specific",
|
|
19
|
+
"file": "instructions/client-flow.instructions.md",
|
|
20
|
+
"canonicalPath": ".github/instructions/client-flow.instructions.md"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: client-flow
|
|
3
|
+
description: How to use @owlmeans/client-flow — client-side flow execution service that drives @owlmeans/flow definitions through state transitions. Auto-invoked when importing client flow primitives.
|
|
4
|
+
user-invocable: false
|
|
5
|
+
---
|
|
6
|
+
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
7
|
+
|
|
8
|
+
# @owlmeans/client-flow
|
|
9
|
+
|
|
10
|
+
**Layer:** Client
|
|
11
|
+
**Install:** `"@owlmeans/client-flow": "^0.1.8"` in `dependencies`
|
|
12
|
+
|
|
13
|
+
## Key Exports
|
|
14
|
+
|
|
15
|
+
| Export | Description |
|
|
16
|
+
|--------|-------------|
|
|
17
|
+
| `makeFlowService()` | Client flow execution service factory |
|
|
18
|
+
| `client` helpers | Client-side flow client/runner |
|
|
19
|
+
| Constants | Flow service aliases |
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { makeFlowService } from '@owlmeans/client-flow'
|
|
25
|
+
context.registerService(makeFlowService())
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Depends On
|
|
29
|
+
|
|
30
|
+
- `@owlmeans/flow`, `@owlmeans/client-context`, `@owlmeans/client-entrypoint`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmeans/client-flow",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -21,18 +21,18 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@owlmeans/auth-common": "^0.1.
|
|
25
|
-
"@owlmeans/client": "^0.1.
|
|
26
|
-
"@owlmeans/client-context": "^0.1.
|
|
27
|
-
"@owlmeans/client-entrypoint": "^0.1.
|
|
28
|
-
"@owlmeans/client-resource": "^0.1.
|
|
29
|
-
"@owlmeans/config": "^0.1.
|
|
30
|
-
"@owlmeans/context": "^0.1.
|
|
31
|
-
"@owlmeans/error": "^0.1.
|
|
32
|
-
"@owlmeans/flow": "^0.1.
|
|
33
|
-
"@owlmeans/entrypoint": "^0.1.
|
|
34
|
-
"@owlmeans/resource": "^0.1.
|
|
35
|
-
"@owlmeans/route": "^0.1.
|
|
24
|
+
"@owlmeans/auth-common": "^0.1.8",
|
|
25
|
+
"@owlmeans/client": "^0.1.8",
|
|
26
|
+
"@owlmeans/client-context": "^0.1.8",
|
|
27
|
+
"@owlmeans/client-entrypoint": "^0.1.8",
|
|
28
|
+
"@owlmeans/client-resource": "^0.1.8",
|
|
29
|
+
"@owlmeans/config": "^0.1.8",
|
|
30
|
+
"@owlmeans/context": "^0.1.8",
|
|
31
|
+
"@owlmeans/error": "^0.1.8",
|
|
32
|
+
"@owlmeans/flow": "^0.1.8",
|
|
33
|
+
"@owlmeans/entrypoint": "^0.1.8",
|
|
34
|
+
"@owlmeans/resource": "^0.1.8",
|
|
35
|
+
"@owlmeans/route": "^0.1.8"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": "*"
|