@owlmeans/redis 0.1.16-rc.0 → 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
|
@@ -59,10 +59,9 @@ Extends `RedisOptions` (ioredis) — all ioredis connection options are supporte
|
|
|
59
59
|
<!-- owlmeans:agent-guidance:start -->
|
|
60
60
|
## Agent guidance
|
|
61
61
|
|
|
62
|
-
This package ships embedded
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
(`.claude/skills/` and `.github/instructions/`):
|
|
62
|
+
This package ships embedded agent skills under `agent-meta/`. After installing your
|
|
63
|
+
`@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
|
|
64
|
+
your project's skill store (`.agents/skills/`):
|
|
66
65
|
|
|
67
66
|
```sh
|
|
68
67
|
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/redis",
|
|
4
|
-
"version": "0.1.16
|
|
5
|
-
"generatedAt": "2026-08-
|
|
4
|
+
"version": "0.1.16",
|
|
5
|
+
"generatedAt": "2026-08-14T10:14:48.861Z",
|
|
6
6
|
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
7
|
"entries": [
|
|
8
8
|
{
|
|
@@ -10,14 +10,7 @@
|
|
|
10
10
|
"name": "redis",
|
|
11
11
|
"category": "package-specific",
|
|
12
12
|
"file": "skills/redis/SKILL.md",
|
|
13
|
-
"canonicalPath": ".
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"kind": "instruction",
|
|
17
|
-
"name": "redis",
|
|
18
|
-
"category": "package-specific",
|
|
19
|
-
"file": "instructions/redis.instructions.md",
|
|
20
|
-
"canonicalPath": ".github/instructions/redis.instructions.md"
|
|
13
|
+
"canonicalPath": ".agents/skills/redis/SKILL.md"
|
|
21
14
|
}
|
|
22
15
|
]
|
|
23
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmeans/redis",
|
|
3
|
-
"version": "0.1.16
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@noble/hashes": "^1.5.0",
|
|
31
|
-
"@owlmeans/context": "^0.1.16
|
|
32
|
-
"@owlmeans/redis-resource": "^0.1.16
|
|
33
|
-
"@owlmeans/resource": "^0.1.16
|
|
34
|
-
"@owlmeans/server-context": "^0.1.16
|
|
31
|
+
"@owlmeans/context": "^0.1.16",
|
|
32
|
+
"@owlmeans/redis-resource": "^0.1.16",
|
|
33
|
+
"@owlmeans/resource": "^0.1.16",
|
|
34
|
+
"@owlmeans/server-context": "^0.1.16",
|
|
35
35
|
"@scure/base": "^1.1.9",
|
|
36
36
|
"ioredis": "^5.4.1"
|
|
37
37
|
},
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "How to use @owlmeans/redis — Redis client service factory (makeRedisService) registered on a server context."
|
|
3
|
-
applyTo: "**/context.ts, **/config.ts, **/*.ts, **/*.tsx"
|
|
4
|
-
---
|
|
5
|
-
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
6
|
-
|
|
7
|
-
# @owlmeans/redis
|
|
8
|
-
|
|
9
|
-
**Layer:** Infra
|
|
10
|
-
**Install:** `"@owlmeans/redis": "^0.1.16-rc.0"` in `dependencies`
|
|
11
|
-
|
|
12
|
-
## Key Exports
|
|
13
|
-
|
|
14
|
-
| Export | Description |
|
|
15
|
-
|--------|-------------|
|
|
16
|
-
| `makeRedisService()` | Redis connection service factory |
|
|
17
|
-
| `Redis` types | Service interface |
|
|
18
|
-
| Constants | `DEFAULT_ALIAS` |
|
|
19
|
-
|
|
20
|
-
## Usage
|
|
21
|
-
|
|
22
|
-
```typescript
|
|
23
|
-
import { makeRedisService } from '@owlmeans/redis'
|
|
24
|
-
context.registerService(makeRedisService())
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
## Depends On
|
|
28
|
-
|
|
29
|
-
- `@owlmeans/server-context`, `@owlmeans/resource`, `ioredis`
|