@floomhq/skills 0.2.19 → 1.0.0
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 +168 -0
- package/dist/index.js +5885 -2664
- package/dist/version.js +1 -1
- package/package.json +6 -5
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "0.
|
|
1
|
+
export const VERSION = "1.0.0";
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@floomhq/skills",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Floom CLI
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Floom Skills CLI \u2014 publish, install, sync, and share AI agent skills.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://skills.floom.dev",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/floomhq/skills-
|
|
9
|
+
"url": "git+https://github.com/floomhq/skills-mvp.git"
|
|
10
10
|
},
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"files": [
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"prepack": "pnpm run build",
|
|
29
29
|
"prepublishOnly": "pnpm run build && pnpm run pack:check",
|
|
30
30
|
"start": "node dist/index.js",
|
|
31
|
-
"test": "tsx --tsconfig tsconfig.typecheck.json --test \"src/**/*.test.ts\"",
|
|
31
|
+
"test": "tsx --tsconfig tsconfig.typecheck.json --test --test-concurrency=1 \"src/**/*.test.ts\"",
|
|
32
32
|
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@modelcontextprotocol/sdk": "1.
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.12.2",
|
|
36
36
|
"chalk": "^5.3.0",
|
|
37
37
|
"commander": "^12.1.0",
|
|
38
38
|
"ora": "^8.1.0",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"zod": "^3.23.8"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
+
"@floom/shared": "workspace:*",
|
|
44
45
|
"esbuild": "^0.27.7",
|
|
45
46
|
"@types/node": "^22.0.0",
|
|
46
47
|
"@types/prompts": "^2.4.9",
|