faostat-skills 0.2.0 → 0.2.1

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
@@ -13,7 +13,11 @@ AI-powered analysis skills for the [UN FAOSTAT](https://www.fao.org/faostat/en/#
13
13
 
14
14
  **Claude Code**
15
15
  ```bash
16
- claude plugin install berba-q/faostat-skills
16
+ # 1. Add this repo as a marketplace (one-time)
17
+ /plugin marketplace add berba-q/faostat-skills
18
+
19
+ # 2. Install
20
+ claude plugin install faostat-skills@faostat
17
21
  ```
18
22
 
19
23
  **OpenAI Codex**
@@ -45,14 +49,19 @@ Then configure your credentials (one-time setup) by asking your AI assistant:
45
49
 
46
50
  ### Claude Code
47
51
 
52
+ Claude Code uses a marketplace model. Add this repo as a marketplace source once, then install:
53
+
48
54
  ```bash
49
- claude plugin install faostat-skills
50
- ```
55
+ # Step 1 — add marketplace (one-time setup)
56
+ /plugin marketplace add berba-q/faostat-skills
51
57
 
52
- Or install directly from GitHub:
58
+ # Step 2 — install the plugin
59
+ claude plugin install faostat-skills@faostat
60
+ ```
53
61
 
62
+ To update to a new version later:
54
63
  ```bash
55
- claude plugin install berba-q/faostat-skills
64
+ claude plugin update faostat-skills@faostat
56
65
  ```
57
66
 
58
67
  ### OpenAI Codex
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "faostat",
3
+ "owner": {
4
+ "name": "Griffiths Obli-Laryea"
5
+ },
6
+ "plugins": [
7
+ {
8
+ "name": "faostat-skills",
9
+ "source": {
10
+ "source": "npm",
11
+ "package": "faostat-skills",
12
+ "version": "^0.2.0"
13
+ },
14
+ "description": "AI skills for analyzing UN FAOSTAT food & agriculture data — country profiles, trade analysis, climate assessments, commodity briefings, maps, infographics, and more."
15
+ }
16
+ ]
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "faostat-skills",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Analysis skills for UN FAOSTAT food and agriculture data. Country profiles, commodity briefings, trade analysis, climate assessments, and data visualizations.",
5
5
  "author": "Griffiths Obli-Laryea",
6
6
  "license": "MIT",
@@ -28,6 +28,7 @@
28
28
  "skills/",
29
29
  "commands/",
30
30
  ".claude-plugin/",
31
+ "marketplace.json",
31
32
  "README.md",
32
33
  "LICENSE"
33
34
  ]