Skip to content

Commit aa34a51

Browse files
chore(release): bump all packages to 0.2.1, update npm metadata
- fluently-cli 0.2.1: accurate description, expanded keywords (claude, gemini, etc.) - fluently-mcp-server 0.2.1: remove stale "4d-" ref, accurate description, expanded keywords - @fluently/scorer 0.2.1: compelling description, expanded keywords - release.yml: add continue-on-error to scorer step (NPM_TOKEN needs @Fluently org access), add --access public to all npm publish commands Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 614f723 commit aa34a51

4 files changed

Lines changed: 33 additions & 18 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,18 @@ jobs:
4343
registry-url: 'https://registry.npmjs.org'
4444

4545
- name: Publish scorer to npm
46-
run: npm publish --workspace=packages/scorer
46+
run: npm publish --workspace=packages/scorer --access public
47+
continue-on-error: true
4748
env:
4849
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4950

5051
- name: Publish CLI to npm
51-
run: npm publish --workspace=packages/cli
52+
run: npm publish --workspace=packages/cli --access public
5253
env:
5354
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5455

5556
- name: Publish MCP Server to npm
56-
run: npm publish --workspace=packages/mcp-server
57+
run: npm publish --workspace=packages/mcp-server --access public
5758
env:
5859
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5960

packages/cli/package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fluently-cli",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"main": "src/index.ts",
55
"bin": {
66
"fluent": "dist/index.js"
@@ -34,25 +34,28 @@
3434
"typescript": "^5.3.3",
3535
"vitest": "^4.1.0"
3636
},
37-
"description": "CLI for the Fluently 4D Framework \u2014 score, compare, and contribute human-AI collaboration cycles from your terminal. Works with any AI agent.",
37+
"description": "Terminal CLI for the Fluently framework — score and compare AI collaboration cycles, contribute new ones via PR, and explore the knowledge base. Works with Claude, GPT, Gemini, Mistral, Copilot, and any AI agent.",
3838
"keywords": [
3939
"ai",
4040
"ai-collaboration",
41+
"human-ai-collaboration",
42+
"fluently",
4143
"llm",
4244
"prompt-engineering",
4345
"4d-framework",
4446
"delegation",
45-
"description",
4647
"discernment",
4748
"diligence",
4849
"mcp",
50+
"claude",
4951
"gpt",
5052
"gemini",
5153
"mistral",
5254
"copilot",
5355
"workflow",
5456
"productivity",
55-
"knowledge-base"
57+
"knowledge-base",
58+
"typescript"
5659
],
5760
"homepage": "https://fluently.ctrl6.com",
5861
"repository": {
@@ -63,5 +66,5 @@
6366
"url": "https://github.com/Fluently-Org/fluently/issues"
6467
},
6568
"license": "MIT",
66-
"author": "Faical Yannick Palingwend\u00e9 Congo"
69+
"author": "Faical Yannick Palingwendé Congo"
6770
}

packages/mcp-server/package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fluently-mcp-server",
3-
"version": "0.2.0",
4-
"description": "MCP server for the Fluently 4D Framework. Exposes knowledge retrieval and contribution tools so any AI agent (Claude, GPT, Gemini, Mistral, Copilot\u2026) can find, reason over, and extend Fluently cycles.",
3+
"version": "0.2.1",
4+
"description": "MCP server for the Fluently framework. Exposes knowledge retrieval and contribution tools so any AI agent (Claude, GPT, Gemini, Mistral, Copilot) can find, reason over, and extend Fluently cycles.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"bin": {
@@ -36,17 +36,21 @@
3636
"model-context-protocol",
3737
"ai",
3838
"ai-collaboration",
39+
"human-ai-collaboration",
40+
"fluently",
3941
"4d-framework",
4042
"llm",
43+
"claude",
4144
"gpt",
4245
"gemini",
43-
"claude",
4446
"mistral",
4547
"copilot",
4648
"delegation",
4749
"discernment",
50+
"diligence",
4851
"knowledge-base",
49-
"workflow"
52+
"workflow",
53+
"typescript"
5054
],
5155
"homepage": "https://fluently.ctrl6.com",
5256
"repository": {
@@ -57,5 +61,5 @@
5761
"url": "https://github.com/Fluently-Org/fluently/issues"
5862
},
5963
"license": "MIT",
60-
"author": "Faical Yannick Palingwend\u00e9 Congo"
64+
"author": "Faical Yannick Palingwendé Congo"
6165
}

packages/scorer/package.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@fluently/scorer",
3-
"version": "0.2.0",
4-
"description": "Shared scoring engine for the Fluently 4D Framework. Validates knowledge YAML against the schema and ranks cycles by keyword similarity for any AI task.",
3+
"version": "0.2.1",
4+
"description": "Zero-dependency scoring engine for the Fluently 4D Framework. Validates YAML knowledge cycles with Zod and ranks them by keyword similarity — no API calls, no false-precision scores.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"exports": {
@@ -28,14 +28,21 @@
2828
"vitest": "^4.1.0"
2929
},
3030
"keywords": [
31-
"ai",
31+
"fluently",
3232
"4d-framework",
33+
"ai-collaboration",
34+
"human-ai-collaboration",
3335
"scoring",
36+
"ranking",
3437
"knowledge-base",
38+
"yaml",
3539
"zod",
36-
"llm",
40+
"validation",
41+
"typescript",
3742
"delegation",
3843
"discernment",
44+
"diligence",
45+
"llm",
3946
"workflow"
4047
],
4148
"homepage": "https://fluently.ctrl6.com",
@@ -47,5 +54,5 @@
4754
"url": "https://github.com/Fluently-Org/fluently/issues"
4855
},
4956
"license": "MIT",
50-
"author": "Faical Yannick Palingwend\u00e9 Congo"
57+
"author": "Faical Yannick Palingwendé Congo"
5158
}

0 commit comments

Comments
 (0)