@owlmeans/api-config-server 0.1.16-rc.0 → 0.1.17
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
|
@@ -37,10 +37,9 @@ Array of server-side route handlers for the config advertisement endpoint (`GET
|
|
|
37
37
|
<!-- owlmeans:agent-guidance:start -->
|
|
38
38
|
## Agent guidance
|
|
39
39
|
|
|
40
|
-
This package ships embedded
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
(`.claude/skills/` and `.github/instructions/`):
|
|
40
|
+
This package ships embedded agent skills under `agent-meta/`. After installing your
|
|
41
|
+
`@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
|
|
42
|
+
your project's skill store (`.agents/skills/`):
|
|
44
43
|
|
|
45
44
|
```sh
|
|
46
45
|
npx @owlmeans/agent-skills
|
package/agent-meta/manifest.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"schemaVersion":
|
|
2
|
+
"schemaVersion": 2,
|
|
3
3
|
"package": "@owlmeans/api-config-server",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"generatedAt": "2026-08-
|
|
4
|
+
"version": "0.1.17",
|
|
5
|
+
"generatedAt": "2026-08-15T13:01:19.928Z",
|
|
6
6
|
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
7
|
"entries": [
|
|
8
8
|
{
|
|
@@ -10,14 +10,7 @@
|
|
|
10
10
|
"name": "api-config-server",
|
|
11
11
|
"category": "package-specific",
|
|
12
12
|
"file": "skills/api-config-server/SKILL.md",
|
|
13
|
-
"canonicalPath": ".
|
|
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"
|
|
13
|
+
"canonicalPath": ".agents/skills/api-config-server/SKILL.md"
|
|
21
14
|
}
|
|
22
15
|
]
|
|
23
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmeans/api-config-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@owlmeans/api-config": "^0.1.
|
|
25
|
-
"@owlmeans/server-api": "^0.1.
|
|
26
|
-
"@owlmeans/server-context": "^0.1.
|
|
27
|
-
"@owlmeans/server-entrypoint": "^0.1.
|
|
24
|
+
"@owlmeans/api-config": "^0.1.17",
|
|
25
|
+
"@owlmeans/server-api": "^0.1.17",
|
|
26
|
+
"@owlmeans/server-context": "^0.1.17",
|
|
27
|
+
"@owlmeans/server-entrypoint": "^0.1.17"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@owlmeans/dep-config": "workspace:*",
|
|
31
31
|
"@types/node": "^26.1.0",
|
|
32
32
|
"nodemon": "^3.1.14",
|
|
33
|
-
"typescript": "^
|
|
33
|
+
"typescript": "^7.0.2"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
@@ -1,27 +0,0 @@
|
|
|
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.16-rc.0"` 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`
|