@owlmeans/client-config 0.1.7 → 0.1.9

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
@@ -39,3 +39,20 @@ Extends `BasicConfig` with `web?: Record<string, string>` (service alias → URL
39
39
 
40
40
  - [`@owlmeans/config`](../config) — base config utilities
41
41
  - [`@owlmeans/client-context`](../client-context) — context that uses the web service config
42
+
43
+ <!-- owlmeans:agent-guidance:start -->
44
+ ## Agent guidance
45
+
46
+ This package ships embedded Claude Code skills and GitHub Copilot instructions under
47
+ `agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
48
+ agent-skills installer to place them into your project's native locations
49
+ (`.claude/skills/` and `.github/instructions/`):
50
+
51
+ ```sh
52
+ npx @owlmeans/agent-skills
53
+ ```
54
+
55
+ The embedded files are version-matched to this package release. Do not edit them
56
+ directly — they are regenerated on each publish. To contribute guidance edits,
57
+ open a PR against the source monorepo.
58
+ <!-- owlmeans:agent-guidance:end -->
@@ -0,0 +1,28 @@
1
+ ---
2
+ description: "How to use @owlmeans/client-config — client-side config types and helpers (extends core Config)."
3
+ applyTo: "**/*.ts, **/*.tsx"
4
+ ---
5
+ <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
6
+
7
+ # @owlmeans/client-config
8
+
9
+ **Layer:** Client
10
+ **Install:** `"@owlmeans/client-config": "^0.1.9"` in `dependencies`
11
+
12
+ ## Key Exports
13
+
14
+ | Export | Description |
15
+ |--------|-------------|
16
+ | `ClientConfig` types | Client-side config interface |
17
+ | Constants | Default config aliases |
18
+ | Helpers | Resolve client config |
19
+
20
+ ## Usage
21
+
22
+ ```typescript
23
+ import type { ClientConfig } from '@owlmeans/client-config'
24
+ ```
25
+
26
+ ## Depends On
27
+
28
+ - `@owlmeans/config`, `@owlmeans/auth`
@@ -0,0 +1,23 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "package": "@owlmeans/client-config",
4
+ "version": "0.1.9",
5
+ "generatedAt": "2026-06-14T13:34:06.143Z",
6
+ "canonicalRepo": "https://github.com/owlmeans/common",
7
+ "entries": [
8
+ {
9
+ "kind": "skill",
10
+ "name": "client-config",
11
+ "category": "package-specific",
12
+ "file": "skills/client-config/SKILL.md",
13
+ "canonicalPath": ".claude/skills/client-config/SKILL.md"
14
+ },
15
+ {
16
+ "kind": "instruction",
17
+ "name": "client-config",
18
+ "category": "package-specific",
19
+ "file": "instructions/client-config.instructions.md",
20
+ "canonicalPath": ".github/instructions/client-config.instructions.md"
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1,29 @@
1
+ ---
2
+ name: client-config
3
+ description: How to use @owlmeans/client-config — client-side config types and helpers (extends core Config). Auto-invoked when importing client config primitives.
4
+ user-invocable: false
5
+ ---
6
+ <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
7
+
8
+ # @owlmeans/client-config
9
+
10
+ **Layer:** Client
11
+ **Install:** `"@owlmeans/client-config": "^0.1.9"` in `dependencies`
12
+
13
+ ## Key Exports
14
+
15
+ | Export | Description |
16
+ |--------|-------------|
17
+ | `ClientConfig` types | Client-side config interface (extends core) |
18
+ | Constants | Default config aliases |
19
+ | Helpers | Resolve client config |
20
+
21
+ ## Usage
22
+
23
+ ```typescript
24
+ import type { ClientConfig } from '@owlmeans/client-config'
25
+ ```
26
+
27
+ ## Depends On
28
+
29
+ - `@owlmeans/config`, `@owlmeans/auth`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owlmeans/client-config",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -21,7 +21,7 @@
21
21
  }
22
22
  },
23
23
  "dependencies": {
24
- "@owlmeans/config": "^0.1.7"
24
+ "@owlmeans/config": "^0.1.9"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@owlmeans/dep-config": "workspace:*",