@owlmeans/basic-ids 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
|
@@ -60,10 +60,9 @@ enum IdStyle { Base58 = 'base58', Base64 = 'base64' }
|
|
|
60
60
|
<!-- owlmeans:agent-guidance:start -->
|
|
61
61
|
## Agent guidance
|
|
62
62
|
|
|
63
|
-
This package ships embedded
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
(`.claude/skills/` and `.github/instructions/`):
|
|
63
|
+
This package ships embedded agent skills under `agent-meta/`. After installing your
|
|
64
|
+
`@owlmeans/*` packages, run the OwlMeans agent-skills installer to place them into
|
|
65
|
+
your project's skill store (`.agents/skills/`):
|
|
67
66
|
|
|
68
67
|
```sh
|
|
69
68
|
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/basic-ids",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"generatedAt": "2026-08-
|
|
4
|
+
"version": "0.1.16",
|
|
5
|
+
"generatedAt": "2026-08-14T10:14:48.857Z",
|
|
6
6
|
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
7
|
"entries": [
|
|
8
8
|
{
|
|
@@ -10,14 +10,7 @@
|
|
|
10
10
|
"name": "basic-ids",
|
|
11
11
|
"category": "package-specific",
|
|
12
12
|
"file": "skills/basic-ids/SKILL.md",
|
|
13
|
-
"canonicalPath": ".
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"kind": "instruction",
|
|
17
|
-
"name": "basic-ids",
|
|
18
|
-
"category": "package-specific",
|
|
19
|
-
"file": "instructions/basic-ids.instructions.md",
|
|
20
|
-
"canonicalPath": ".github/instructions/basic-ids.instructions.md"
|
|
13
|
+
"canonicalPath": ".agents/skills/basic-ids/SKILL.md"
|
|
21
14
|
}
|
|
22
15
|
]
|
|
23
16
|
}
|
package/package.json
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "How to use @owlmeans/basic-ids — identifier generation helpers (random IDs, namespaced IDs, ULID-like)."
|
|
3
|
-
applyTo: "**/*.ts, **/*.tsx"
|
|
4
|
-
---
|
|
5
|
-
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->
|
|
6
|
-
|
|
7
|
-
# @owlmeans/basic-ids
|
|
8
|
-
|
|
9
|
-
**Layer:** Core
|
|
10
|
-
**Install:** `"@owlmeans/basic-ids": "^0.1.15"` in `dependencies`
|
|
11
|
-
|
|
12
|
-
## Key Exports
|
|
13
|
-
|
|
14
|
-
| Export | Description |
|
|
15
|
-
|--------|-------------|
|
|
16
|
-
| ID helpers | Generate random/sortable identifiers |
|
|
17
|
-
| Constants | Default ID lengths, character sets |
|
|
18
|
-
|
|
19
|
-
## Usage
|
|
20
|
-
|
|
21
|
-
```typescript
|
|
22
|
-
import { randomId } from '@owlmeans/basic-ids'
|
|
23
|
-
const id = randomId()
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
## Depends On
|
|
27
|
-
|
|
28
|
-
- None at runtime
|