@graphit/cli 0.1.38 → 0.1.40

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.
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "metadata": {
9
9
  "description": "Graphit CLI plugin for AI coding assistants",
10
- "version": "0.1.38"
10
+ "version": "0.1.40"
11
11
  },
12
12
  "plugins": [
13
13
  {
@@ -16,9 +16,9 @@
16
16
  "source": {
17
17
  "source": "npm",
18
18
  "package": "@graphit/cli",
19
- "version": "0.1.38"
19
+ "version": "0.1.40"
20
20
  },
21
- "version": "0.1.38",
21
+ "version": "0.1.40",
22
22
  "category": "data-visualization",
23
23
  "tags": [
24
24
  "bi",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphit",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "description": "Build custom HTML dashboards from real data using the Graphit CLI. KB-aware queries, entity wrapping, cached data sources.",
5
5
  "author": {
6
6
  "name": "Graphit",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphit",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "description": "Build custom HTML dashboards from real data using the Graphit CLI. KB-aware queries, entity wrapping, cached data sources.",
5
5
  "author": {
6
6
  "name": "Graphit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphit/cli",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "description": "Graphit CLI - Build custom dashboards from any AI coding assistant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,5 @@
1
1
  ---
2
- skill_version: "0.1.38"
2
+ skill_version: "0.1.40"
3
3
  name: graphit
4
4
  description: >
5
5
  Build HTML dashboards with Graphit. KB-aware queries, entity wrapping, cached data sources.
@@ -15,8 +15,17 @@ Build custom HTML dashboards from real data using the Graphit CLI.
15
15
 
16
16
  ## Session Start
17
17
 
18
- Run `graphit plugin status` at the start of every Graphit session and whenever the user asks about Graphit updates, plugin health, or stale instructions. This command is the source of truth for CLI, plugin-bundle, skill, ref, hook, and legacy copied-file version health; do not invent a manual version check.
19
- If it reports action needed, tell the user the exact remediation it prints before proceeding.
18
+ Before anything else, run `graphit plugin status` and show the user a version banner:
19
+
20
+ ```
21
+ Graphit
22
+ Skill: {skill_version from this file's frontmatter}
23
+ CLI: {output of graphit --version}
24
+ Status: {OK or action needed from plugin status}
25
+ ```
26
+
27
+ If `graphit plugin status` reports action needed, show the exact remediation it prints before proceeding.
28
+ If `graphit plugin status` fails with "command not found" or "unknown command", the CLI is too old. Show the banner with `CLI: {version} (outdated)` and tell the user to update: `npm update -g @graphit/cli`. Do not proceed with an outdated CLI - commands and flags in this skill may not exist in old versions.
20
29
 
21
30
  ## Install / Update Model
22
31
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "package": "@graphit/cli",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "source": "cli/package.json"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  ---
2
- skill_version: "0.1.38"
2
+ skill_version: "0.1.40"
3
3
  alwaysApply: false
4
4
  description: "Build Graphit HTML dashboards with KB-aware queries, entity wrapping, and cached data sources"
5
5
  globs: []
@@ -11,8 +11,17 @@ Build custom HTML dashboards from real data using the Graphit CLI.
11
11
 
12
12
  ## Session Start
13
13
 
14
- Run `graphit plugin status` at the start of every Graphit session and whenever the user asks about Graphit updates, plugin health, or stale instructions. This command is the source of truth for CLI, plugin-bundle, skill, ref, hook, and legacy copied-file version health; do not invent a manual version check.
15
- If it reports action needed, tell the user the exact remediation it prints before proceeding.
14
+ Before anything else, run `graphit plugin status` and show the user a version banner:
15
+
16
+ ```
17
+ Graphit
18
+ Skill: {skill_version from this file's frontmatter}
19
+ CLI: {output of graphit --version}
20
+ Status: {OK or action needed from plugin status}
21
+ ```
22
+
23
+ If `graphit plugin status` reports action needed, show the exact remediation before proceeding.
24
+ If `graphit plugin status` fails with "command not found" or "unknown command", the CLI is too old. Show `CLI: {version} (outdated)` and tell the user to update: `npm update -g @graphit/cli`. Do not proceed with an outdated CLI.
16
25
 
17
26
  ## Install / Update Model
18
27