@owlmeans/client-did 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
|
@@ -48,3 +48,20 @@ Default service alias for the wallet service.
|
|
|
48
48
|
|
|
49
49
|
- [`@owlmeans/did`](../did) — `makeWallet` called internally
|
|
50
50
|
- [`@owlmeans/client-auth`](../client-auth) — uses the wallet service during authentication
|
|
51
|
+
|
|
52
|
+
<!-- owlmeans:agent-guidance:start -->
|
|
53
|
+
## Agent guidance
|
|
54
|
+
|
|
55
|
+
This package ships embedded Claude Code skills and GitHub Copilot instructions under
|
|
56
|
+
`agent-meta/`. After installing your `@owlmeans/*` packages, run the OwlMeans
|
|
57
|
+
agent-skills installer to place them into your project's native locations
|
|
58
|
+
(`.claude/skills/` and `.github/instructions/`):
|
|
59
|
+
|
|
60
|
+
```sh
|
|
61
|
+
npx @owlmeans/agent-skills
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
The embedded files are version-matched to this package release. Do not edit them
|
|
65
|
+
directly — they are regenerated on each publish. To contribute guidance edits,
|
|
66
|
+
open a PR against the source monorepo.
|
|
67
|
+
<!-- owlmeans:agent-guidance:end -->
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "How to use @owlmeans/client-did — client-side DID wallet account management built on @owlmeans/did."
|
|
3
|
+
applyTo: "**/*.ts, **/*.tsx"
|
|
4
|
+
---
|
|
5
|
+
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
6
|
+
|
|
7
|
+
# @owlmeans/client-did
|
|
8
|
+
|
|
9
|
+
**Layer:** Client
|
|
10
|
+
**Install:** `"@owlmeans/client-did": "^0.1.9"` in `dependencies`
|
|
11
|
+
|
|
12
|
+
## Key Exports
|
|
13
|
+
|
|
14
|
+
| Export | Description |
|
|
15
|
+
|--------|-------------|
|
|
16
|
+
| `makeDidService()` | DID wallet service factory |
|
|
17
|
+
| Account helpers | Wallet account create/import |
|
|
18
|
+
| Constants | DID service aliases |
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { makeDidService } from '@owlmeans/client-did'
|
|
24
|
+
context.registerService(makeDidService())
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Depends On
|
|
28
|
+
|
|
29
|
+
- `@owlmeans/did`, `@owlmeans/client-context`, `@owlmeans/basic-keys`
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"package": "@owlmeans/client-did",
|
|
4
|
+
"version": "0.1.9",
|
|
5
|
+
"generatedAt": "2026-06-14T13:34:06.124Z",
|
|
6
|
+
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
|
+
"entries": [
|
|
8
|
+
{
|
|
9
|
+
"kind": "skill",
|
|
10
|
+
"name": "client-did",
|
|
11
|
+
"category": "package-specific",
|
|
12
|
+
"file": "skills/client-did/SKILL.md",
|
|
13
|
+
"canonicalPath": ".claude/skills/client-did/SKILL.md"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"kind": "instruction",
|
|
17
|
+
"name": "client-did",
|
|
18
|
+
"category": "package-specific",
|
|
19
|
+
"file": "instructions/client-did.instructions.md",
|
|
20
|
+
"canonicalPath": ".github/instructions/client-did.instructions.md"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: client-did
|
|
3
|
+
description: How to use @owlmeans/client-did — client-side DID wallet account management built on @owlmeans/did. Auto-invoked when importing client DID services.
|
|
4
|
+
user-invocable: false
|
|
5
|
+
---
|
|
6
|
+
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
7
|
+
|
|
8
|
+
# @owlmeans/client-did
|
|
9
|
+
|
|
10
|
+
**Layer:** Client
|
|
11
|
+
**Install:** `"@owlmeans/client-did": "^0.1.9"` in `dependencies`
|
|
12
|
+
|
|
13
|
+
## Key Exports
|
|
14
|
+
|
|
15
|
+
| Export | Description |
|
|
16
|
+
|--------|-------------|
|
|
17
|
+
| `makeDidService()` | Client-side DID wallet service factory |
|
|
18
|
+
| Account helpers | Wallet account creation/import |
|
|
19
|
+
| Constants | DID service aliases |
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { makeDidService } from '@owlmeans/client-did'
|
|
25
|
+
context.registerService(makeDidService())
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Depends On
|
|
29
|
+
|
|
30
|
+
- `@owlmeans/did`, `@owlmeans/client-context`, `@owlmeans/basic-keys`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmeans/client-did",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@owlmeans/auth": "^0.1.
|
|
25
|
-
"@owlmeans/client": "^0.1.
|
|
26
|
-
"@owlmeans/client-context": "^0.1.
|
|
27
|
-
"@owlmeans/client-resource": "^0.1.
|
|
28
|
-
"@owlmeans/context": "^0.1.
|
|
29
|
-
"@owlmeans/did": "^0.1.
|
|
30
|
-
"@owlmeans/state": "^0.1.
|
|
24
|
+
"@owlmeans/auth": "^0.1.9",
|
|
25
|
+
"@owlmeans/client": "^0.1.9",
|
|
26
|
+
"@owlmeans/client-context": "^0.1.9",
|
|
27
|
+
"@owlmeans/client-resource": "^0.1.9",
|
|
28
|
+
"@owlmeans/context": "^0.1.9",
|
|
29
|
+
"@owlmeans/did": "^0.1.9",
|
|
30
|
+
"@owlmeans/state": "^0.1.9"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@owlmeans/dep-config": "workspace:*",
|