@owlmeans/storage-common 0.1.15 → 0.1.16
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
|
@@ -54,10 +54,9 @@ Extends `StoredFileMeta` with `instances: { [key: string]: StoredFilePayload }`
|
|
|
54
54
|
<!-- owlmeans:agent-guidance:start -->
|
|
55
55
|
## Agent guidance
|
|
56
56
|
|
|
57
|
-
This package ships embedded
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
(`.claude/skills/` and `.github/instructions/`):
|
|
57
|
+
This package ships embedded agent skills under `agent-meta/`. After installing your
|
|
58
|
+
`@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
|
|
59
|
+
your project's skill store (`.agents/skills/`):
|
|
61
60
|
|
|
62
61
|
```sh
|
|
63
62
|
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/storage-common",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"generatedAt": "2026-08-
|
|
4
|
+
"version": "0.1.16",
|
|
5
|
+
"generatedAt": "2026-08-14T10:14:48.856Z",
|
|
6
6
|
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
7
|
"entries": [
|
|
8
8
|
{
|
|
@@ -10,14 +10,7 @@
|
|
|
10
10
|
"name": "storage-common",
|
|
11
11
|
"category": "package-specific",
|
|
12
12
|
"file": "skills/storage-common/SKILL.md",
|
|
13
|
-
"canonicalPath": ".
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"kind": "instruction",
|
|
17
|
-
"name": "storage-common",
|
|
18
|
-
"category": "package-specific",
|
|
19
|
-
"file": "instructions/storage-common.instructions.md",
|
|
20
|
-
"canonicalPath": ".github/instructions/storage-common.instructions.md"
|
|
13
|
+
"canonicalPath": ".agents/skills/storage-common/SKILL.md"
|
|
21
14
|
}
|
|
22
15
|
]
|
|
23
16
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmeans/storage-common",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.16",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsc -b",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"ajv": "*"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@owlmeans/auth": "^0.1.
|
|
28
|
-
"@owlmeans/error": "^0.1.
|
|
27
|
+
"@owlmeans/auth": "^0.1.16",
|
|
28
|
+
"@owlmeans/error": "^0.1.16"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@owlmeans/dep-config": "workspace:*",
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "How to use @owlmeans/storage-common — shared object/file storage types, error types, and model used by storage-resource and image-resource."
|
|
3
|
-
applyTo: "**/*.ts, **/*.tsx"
|
|
4
|
-
---
|
|
5
|
-
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
6
|
-
|
|
7
|
-
# @owlmeans/storage-common
|
|
8
|
-
|
|
9
|
-
**Layer:** Infra
|
|
10
|
-
**Install:** `"@owlmeans/storage-common": "^0.1.15"` in `dependencies`
|
|
11
|
-
|
|
12
|
-
## Key Exports
|
|
13
|
-
|
|
14
|
-
| Export | Description |
|
|
15
|
-
|--------|-------------|
|
|
16
|
-
| `StorageBucket` types | Bucket descriptor |
|
|
17
|
-
| `StorageObject` types | Stored object metadata |
|
|
18
|
-
| Errors | Typed storage errors |
|
|
19
|
-
| Constants | Default content types |
|
|
20
|
-
| Model | Path/key normalization helpers |
|
|
21
|
-
|
|
22
|
-
## Usage
|
|
23
|
-
|
|
24
|
-
```typescript
|
|
25
|
-
import type { StorageBucket } from '@owlmeans/storage-common'
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
## Depends On
|
|
29
|
-
|
|
30
|
-
- `@owlmeans/error`, `@owlmeans/i18n`
|