@floomhq/floom 1.0.14 → 1.0.17

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/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.14",
4
- "description": "Publish AI skills from your terminal. Share with a link.",
3
+ "version": "1.0.17",
4
+ "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "bin": {
8
+ "floom": "bin/floom.js",
8
9
  "floom-skills": "bin/floom.js"
9
10
  },
10
11
  "files": [
package/dist/targets.js DELETED
@@ -1,16 +0,0 @@
1
- import { homedir } from "node:os";
2
- import { join } from "node:path";
3
- export function resolveSkillsDir(target) {
4
- if (process.env.FLOOM_SKILLS_DIR)
5
- return process.env.FLOOM_SKILLS_DIR;
6
- if (target === "codex") {
7
- const codexHome = process.env.CODEX_HOME ?? join(homedir(), ".codex");
8
- return process.env.CODEX_SKILLS_DIR ?? join(codexHome, "skills");
9
- }
10
- return process.env.CLAUDE_SKILLS_DIR ?? join(homedir(), ".claude", "skills");
11
- }
12
- export function skillsDirHint(target) {
13
- if (process.env.FLOOM_SKILLS_DIR)
14
- return "FLOOM_SKILLS_DIR";
15
- return target === "codex" ? "CODEX_SKILLS_DIR" : "CLAUDE_SKILLS_DIR";
16
- }