@owlmeans/api-config-server 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
@@ -33,3 +33,20 @@ Array of server-side route handlers for the config advertisement endpoint (`GET
33
33
 
34
34
  - [`@owlmeans/api-config`](../api-config) — shared types and module alias
35
35
  - [`@owlmeans/api-config-client`](../api-config-client) — client that fetches this endpoint
36
+
37
+ <!-- owlmeans:agent-guidance:start -->
38
+ ## Agent guidance
39
+
40
+ This package ships embedded Claude Code skills and GitHub Copilot instructions under
41
+ `agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
42
+ agent-skills installer to place them into your project's native locations
43
+ (`.claude/skills/` and `.github/instructions/`):
44
+
45
+ ```sh
46
+ npx @owlmeans/agent-skills
47
+ ```
48
+
49
+ The embedded files are version-matched to this package release. Do not edit them
50
+ directly — they are regenerated on each publish. To contribute guidance edits,
51
+ open a PR against the source monorepo.
52
+ <!-- owlmeans:agent-guidance:end -->
@@ -0,0 +1,27 @@
1
+ ---
2
+ description: "How to use @owlmeans/api-config-server — server-side modules that expose the API config endpoint consumed by api-config-client."
3
+ applyTo: "**/*.ts, **/*.tsx"
4
+ ---
5
+ <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
6
+
7
+ # @owlmeans/api-config-server
8
+
9
+ **Layer:** Server
10
+ **Install:** `"@owlmeans/api-config-server": "^0.1.9"` in `dependencies`
11
+
12
+ ## Key Exports
13
+
14
+ | Export | Description |
15
+ |--------|-------------|
16
+ | `modules` | Server api-config module declarations |
17
+
18
+ ## Usage
19
+
20
+ ```typescript
21
+ import { modules as apiConfigServerModules } from '@owlmeans/api-config-server'
22
+ export const appModules = [...modules, ...apiConfigServerModules, ...managerModules]
23
+ ```
24
+
25
+ ## Depends On
26
+
27
+ - `@owlmeans/api-config`, `@owlmeans/server-entrypoint`, `@owlmeans/server-context`
@@ -0,0 +1,23 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "package": "@owlmeans/api-config-server",
4
+ "version": "0.1.9",
5
+ "generatedAt": "2026-06-14T13:34:06.128Z",
6
+ "canonicalRepo": "https://github.com/owlmeans/common",
7
+ "entries": [
8
+ {
9
+ "kind": "skill",
10
+ "name": "api-config-server",
11
+ "category": "package-specific",
12
+ "file": "skills/api-config-server/SKILL.md",
13
+ "canonicalPath": ".claude/skills/api-config-server/SKILL.md"
14
+ },
15
+ {
16
+ "kind": "instruction",
17
+ "name": "api-config-server",
18
+ "category": "package-specific",
19
+ "file": "instructions/api-config-server.instructions.md",
20
+ "canonicalPath": ".github/instructions/api-config-server.instructions.md"
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: api-config-server
3
+ description: How to use @owlmeans/api-config-server — server-side modules that expose the API config endpoint consumed by api-config-client. Auto-invoked when serving API config from a server app.
4
+ user-invocable: false
5
+ ---
6
+ <!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
7
+
8
+ # @owlmeans/api-config-server
9
+
10
+ **Layer:** Server
11
+ **Install:** `"@owlmeans/api-config-server": "^0.1.9"` in `dependencies`
12
+
13
+ ## Key Exports
14
+
15
+ | Export | Description |
16
+ |--------|-------------|
17
+ | `modules` | Server-side api-config module declarations |
18
+
19
+ ## Usage
20
+
21
+ ```typescript
22
+ import { modules as apiConfigServerModules } from '@owlmeans/api-config-server'
23
+ export const appModules = [...modules, ...apiConfigServerModules, ...managerModules]
24
+ ```
25
+
26
+ ## Depends On
27
+
28
+ - `@owlmeans/api-config`, `@owlmeans/server-entrypoint`, `@owlmeans/server-context`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owlmeans/api-config-server",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -21,10 +21,10 @@
21
21
  }
22
22
  },
23
23
  "dependencies": {
24
- "@owlmeans/api-config": "^0.1.7",
25
- "@owlmeans/server-api": "^0.1.7",
26
- "@owlmeans/server-context": "^0.1.7",
27
- "@owlmeans/server-entrypoint": "^0.1.7"
24
+ "@owlmeans/api-config": "^0.1.9",
25
+ "@owlmeans/server-api": "^0.1.9",
26
+ "@owlmeans/server-context": "^0.1.9",
27
+ "@owlmeans/server-entrypoint": "^0.1.9"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@owlmeans/dep-config": "workspace:*",