faostat-skills 0.2.3 → 0.2.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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +20 -12
- package/package.json +5 -2
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"source": {
|
|
10
10
|
"source": "npm",
|
|
11
11
|
"package": "faostat-skills",
|
|
12
|
-
"version": "
|
|
12
|
+
"version": "0.2.4"
|
|
13
13
|
},
|
|
14
14
|
"description": "AI skills for analyzing UN FAOSTAT food & agriculture data — country profiles, trade analysis, climate assessments, commodity briefings, maps, infographics, and more."
|
|
15
15
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faostat-skills",
|
|
3
3
|
"description": "Analysis skills for UN FAOSTAT food and agriculture data. Country profiles, commodity briefings, trade analysis, climate assessments, and data visualizations. Works with any AI assistant that supports the SKILL.md format.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.2.4",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Griffiths Obli-Laryea"
|
|
7
7
|
},
|
package/README.md
CHANGED
|
@@ -17,7 +17,10 @@ AI-powered analysis skills for the [UN FAOSTAT](https://www.fao.org/faostat/en/#
|
|
|
17
17
|
/plugin marketplace add berba-q/faostat-skills
|
|
18
18
|
|
|
19
19
|
# 2. Install
|
|
20
|
-
|
|
20
|
+
/plugin install faostat-skills@faostat
|
|
21
|
+
|
|
22
|
+
# 3. Activate
|
|
23
|
+
/reload-plugins
|
|
21
24
|
```
|
|
22
25
|
|
|
23
26
|
**OpenAI Codex**
|
|
@@ -61,10 +64,7 @@ Claude Code uses a marketplace model. Add this repo as a marketplace source once
|
|
|
61
64
|
claude plugin install faostat-skills@faostat
|
|
62
65
|
```
|
|
63
66
|
|
|
64
|
-
|
|
65
|
-
```bash
|
|
66
|
-
claude plugin update faostat-skills@faostat
|
|
67
|
-
```
|
|
67
|
+
Updates are automatic — Claude Code checks for new versions at startup and updates in the background. Run `/reload-plugins` to activate the latest version in your current session.
|
|
68
68
|
|
|
69
69
|
### OpenAI Codex
|
|
70
70
|
|
|
@@ -168,30 +168,38 @@ Key domains used by these skills:
|
|
|
168
168
|
```
|
|
169
169
|
FAOSTAT Skills (this repo) FAOSTAT MCP Server (separate)
|
|
170
170
|
┌────────────────────────┐ ┌────────────────────────┐
|
|
171
|
-
│
|
|
171
|
+
│ 14 platform-agnostic │ uses │ 21 MCP tools │
|
|
172
172
|
│ SKILL.md workflows │────────→ │ Published on PyPI │
|
|
173
|
-
│ │ │
|
|
173
|
+
│ │ │ faostat-mcp · stable │
|
|
174
174
|
└────────────────────────┘ └────────────────────────┘
|
|
175
175
|
```
|
|
176
176
|
|
|
177
|
+
**Two distribution channels — keep both in sync:**
|
|
178
|
+
- **Claude Code**: served from GitHub (`berba-q/faostat-skills`) via the marketplace. Push to GitHub → users get the update automatically at next startup.
|
|
179
|
+
- **npm / Codex**: served from npm (`faostat-skills`). Run `npm publish` → Codex users update with `npm install -g faostat-skills@latest`.
|
|
180
|
+
|
|
177
181
|
Skills orchestrate the MCP server's tools into multi-step analysis workflows. They encode FAOSTAT domain expertise so users can easily interact with the FAOSTAT data.
|
|
178
182
|
|
|
179
183
|
## Project Structure
|
|
180
184
|
|
|
181
185
|
```
|
|
182
186
|
faostat-skills/
|
|
183
|
-
├── skills/ ← Core: platform-agnostic SKILL.md files
|
|
184
|
-
│ ├── country-profile/
|
|
187
|
+
├── skills/ ← Core: 14 platform-agnostic SKILL.md files
|
|
188
|
+
│ ├── country-profile/ ← Tier 1: analysis
|
|
185
189
|
│ ├── compare/
|
|
186
190
|
│ ├── commodity/
|
|
187
191
|
│ ├── trade/
|
|
188
192
|
│ ├── trends/
|
|
189
193
|
│ ├── climate/
|
|
190
|
-
│ ├──
|
|
194
|
+
│ ├── explore/
|
|
195
|
+
│ ├── viz/ ← Tier 2: outputs
|
|
196
|
+
│ ├── map/
|
|
197
|
+
│ ├── infographic/
|
|
191
198
|
│ ├── story/
|
|
192
|
-
│
|
|
199
|
+
│ ├── analytical-brief/
|
|
200
|
+
│ ├── scientific-paper/
|
|
201
|
+
│ └── export-dataset/ ← Tier 3: utilities
|
|
193
202
|
├── .claude-plugin/ ← Claude Code packaging
|
|
194
|
-
├── .agents/skills/ ← OpenAI Codex packaging (symlink)
|
|
195
203
|
├── commands/ ← Claude Code slash commands
|
|
196
204
|
├── README.md
|
|
197
205
|
└── LICENSE
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faostat-skills",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
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",
|
|
@@ -30,5 +30,8 @@
|
|
|
30
30
|
".claude-plugin/",
|
|
31
31
|
"README.md",
|
|
32
32
|
"LICENSE"
|
|
33
|
-
]
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"version": "node scripts/sync-version.mjs && git add .claude-plugin/plugin.json marketplace.json .claude-plugin/marketplace.json"
|
|
36
|
+
}
|
|
34
37
|
}
|