@owlmeans/client-route 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
|
@@ -56,3 +56,20 @@ Extends `CommonRouteModel` with `_client: true` flag and `partialPath` for relat
|
|
|
56
56
|
|
|
57
57
|
- [`@owlmeans/route`](../route) — `CommonRouteModel`, `CommonRoute` base types
|
|
58
58
|
- [`@owlmeans/client-module`](../client-module) — uses `route()` and `isClientRouteModel()` when constructing modules
|
|
59
|
+
|
|
60
|
+
<!-- owlmeans:agent-guidance:start -->
|
|
61
|
+
## Agent guidance
|
|
62
|
+
|
|
63
|
+
This package ships embedded Claude Code skills and GitHub Copilot instructions under
|
|
64
|
+
`agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
|
|
65
|
+
agent-skills installer to place them into your project's native locations
|
|
66
|
+
(`.claude/skills/` and `.github/instructions/`):
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
npx @owlmeans/agent-skills
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
The embedded files are version-matched to this package release. Do not edit them
|
|
73
|
+
directly — they are regenerated on each publish. To contribute guidance edits,
|
|
74
|
+
open a PR against the source monorepo.
|
|
75
|
+
<!-- owlmeans:agent-guidance:end -->
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "How to use @owlmeans/client-route — client-side route resolution that turns route declarations into navigation paths."
|
|
3
|
+
applyTo: "**/*.ts, **/*.tsx"
|
|
4
|
+
---
|
|
5
|
+
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
6
|
+
|
|
7
|
+
# @owlmeans/client-route
|
|
8
|
+
|
|
9
|
+
**Layer:** Client
|
|
10
|
+
**Install:** `"@owlmeans/client-route": "^0.1.8"` in `dependencies`
|
|
11
|
+
|
|
12
|
+
## Key Exports
|
|
13
|
+
|
|
14
|
+
| Export | Description |
|
|
15
|
+
|--------|-------------|
|
|
16
|
+
| `ClientRoute` types | Resolved client route shape |
|
|
17
|
+
| Helpers | Build client routes |
|
|
18
|
+
| Model | Path normalization |
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { resolveClientRoute } from '@owlmeans/client-route'
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Depends On
|
|
27
|
+
|
|
28
|
+
- `@owlmeans/route`, `@owlmeans/router`
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"package": "@owlmeans/client-route",
|
|
4
|
+
"version": "0.1.8",
|
|
5
|
+
"generatedAt": "2026-06-11T16:30:27.163Z",
|
|
6
|
+
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
|
+
"entries": [
|
|
8
|
+
{
|
|
9
|
+
"kind": "skill",
|
|
10
|
+
"name": "client-route",
|
|
11
|
+
"category": "package-specific",
|
|
12
|
+
"file": "skills/client-route/SKILL.md",
|
|
13
|
+
"canonicalPath": ".claude/skills/client-route/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"kind": "instruction",
|
|
17
|
+
"name": "client-route",
|
|
18
|
+
"category": "package-specific",
|
|
19
|
+
"file": "instructions/client-route.instructions.md",
|
|
20
|
+
"canonicalPath": ".github/instructions/client-route.instructions.md"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: client-route
|
|
3
|
+
description: How to use @owlmeans/client-route — client-side route resolution that turns route declarations into navigation paths. Auto-invoked when importing client route helpers.
|
|
4
|
+
user-invocable: false
|
|
5
|
+
---
|
|
6
|
+
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
7
|
+
|
|
8
|
+
# @owlmeans/client-route
|
|
9
|
+
|
|
10
|
+
**Layer:** Client
|
|
11
|
+
**Install:** `"@owlmeans/client-route": "^0.1.8"` in `dependencies`
|
|
12
|
+
|
|
13
|
+
## Key Exports
|
|
14
|
+
|
|
15
|
+
| Export | Description |
|
|
16
|
+
|--------|-------------|
|
|
17
|
+
| `ClientRoute` types | Resolved client-side route shape |
|
|
18
|
+
| Helpers | Build client routes from declarations |
|
|
19
|
+
| Model | Path normalization, parent inheritance |
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
Most app code uses route declarations from `@owlmeans/route` and lets `@owlmeans/web-router` consume them. Import here only for custom routing.
|
|
24
|
+
|
|
25
|
+
```typescript
|
|
26
|
+
import { resolveClientRoute } from '@owlmeans/client-route'
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Depends On
|
|
30
|
+
|
|
31
|
+
- `@owlmeans/route`, `@owlmeans/router`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmeans/client-route",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@owlmeans/client-context": "^0.1.
|
|
25
|
-
"@owlmeans/route": "^0.1.
|
|
24
|
+
"@owlmeans/client-context": "^0.1.8",
|
|
25
|
+
"@owlmeans/route": "^0.1.8"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@owlmeans/dep-config": "workspace:*",
|