@graflethq/cli 0.0.2 → 0.0.3
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 +4 -2
- package/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,10 +9,12 @@ Precomputed knowledge graphs of versioned library docs, for AI agents. One grafl
|
|
|
9
9
|
## Run with no install
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx
|
|
13
|
-
uvx graflet
|
|
12
|
+
npx @graflethq/cli # Node — installs command `graflet`
|
|
13
|
+
uvx graflet # Python (uv) — same tool, published to PyPI
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
> npm blocks the bare name `graflet` (too similar to `leaflet`), so the npm package is scoped `@graflethq/cli`; the command it installs is still `graflet`. PyPI keeps the bare `graflet`.
|
|
17
|
+
|
|
16
18
|
> Spelled **g-r-a-f-l-e-t**, no p-h.
|
|
17
19
|
|
|
18
20
|
_This 0.0.1 is a name-lock placeholder. Real CLI lands soon._
|
package/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
console.log("graflet — coming soon. Docs as a graph, not snippets. https://github.com/
|
|
2
|
+
console.log("graflet — coming soon. Docs as a graph, not snippets. https://github.com/graflethq/graflet");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graflethq/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Precomputed knowledge graphs of versioned library docs, for AI agents. Docs as a graph, not snippets.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"knowledge-graph",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
],
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"author": "MD. MOHIBUR RAHMAN <mrpmohiburrahman@gmail.com>",
|
|
19
|
-
"homepage": "https://github.com/
|
|
19
|
+
"homepage": "https://github.com/graflethq/graflet",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/
|
|
22
|
+
"url": "git+https://github.com/graflethq/graflet.git"
|
|
23
23
|
},
|
|
24
24
|
"bin": {
|
|
25
25
|
"graflet": "index.js"
|