@graflethq/cli 0.0.2 → 0.0.4

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.
Files changed (3) hide show
  1. package/README.md +17 -4
  2. package/index.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -1,4 +1,15 @@
1
- # graflet
1
+ <p align="center">
2
+ <a href="https://github.com/graflethq/graflet">
3
+ <img src="https://raw.githubusercontent.com/graflethq/graflet/main/assets/brand/graflet-og-1200x630.png" alt="graflet — Docs as a graph, not snippets." width="640">
4
+ </a>
5
+ </p>
6
+
7
+ <p align="center">
8
+ <a href="https://www.npmjs.com/package/@graflethq/cli"><img alt="npm" src="https://img.shields.io/npm/v/@graflethq/cli?logo=npm&label=npm"></a>
9
+ <a href="https://pypi.org/project/graflet/"><img alt="PyPI" src="https://img.shields.io/pypi/v/graflet?logo=pypi&logoColor=white&label=PyPI"></a>
10
+ <img alt="License: MIT" src="https://img.shields.io/badge/license-MIT-blue">
11
+ <a href="https://x.com/graflethq"><img alt="@graflethq on X" src="https://img.shields.io/badge/follow-%40graflethq-111?logo=x&logoColor=white"></a>
12
+ </p>
2
13
 
3
14
  **Docs as a graph, not snippets.**
4
15
 
@@ -9,10 +20,12 @@ Precomputed knowledge graphs of versioned library docs, for AI agents. One grafl
9
20
  ## Run with no install
10
21
 
11
22
  ```bash
12
- npx graflet # Node
13
- uvx graflet # Python (uv) — same tool, published to PyPI
23
+ npx @graflethq/cli # Node — installs command `graflet`
24
+ uvx graflet # Python (uv) — same tool, published to PyPI
14
25
  ```
15
26
 
27
+ > 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`.
28
+
16
29
  > Spelled **g-r-a-f-l-e-t**, no p-h.
17
30
 
18
- _This 0.0.1 is a name-lock placeholder. Real CLI lands soon._
31
+ _Early placeholder release; the 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/mrpmohiburrahman/graflet");
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.2",
3
+ "version": "0.0.4",
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/mrpmohiburrahman/graflet",
19
+ "homepage": "https://github.com/graflethq/graflet",
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "git+https://github.com/mrpmohiburrahman/graflet.git"
22
+ "url": "git+https://github.com/graflethq/graflet.git"
23
23
  },
24
24
  "bin": {
25
25
  "graflet": "index.js"