fathom-cli 0.3.3 → 0.3.5
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/LICENSE +21 -0
- package/README.md +4 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +11 -6
- package/plugins/fathom/.mcp.json +1 -1
- package/plugins/fathom/skills/budget/SKILL.md +1 -1
- package/plugins/fathom/skills/estimate/SKILL.md +1 -1
- package/plugins/fathom/skills/projections/SKILL.md +1 -1
- package/plugins/fathom/skills/recommend-model/SKILL.md +1 -1
- package/plugins/fathom/skills/status/SKILL.md +1 -1
- package/plugins/fathom/tests/integrations.test.ts +2 -2
- package/plugins/fathom/tests/plugin.test.ts +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Fathom Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -74,6 +74,7 @@ $ fathom
|
|
|
74
74
|
| Command | What it does |
|
|
75
75
|
|---------|-------------|
|
|
76
76
|
| `fathom` | Full workflow — intake, build, review |
|
|
77
|
+
| `fathom init` | Initialize Fathom for a project (creates `.fathom/` + `.mcp.json`) |
|
|
77
78
|
| `fathom estimate <desc>` | Quick cost estimate |
|
|
78
79
|
| `fathom intake` | Requirements → estimated spec slices |
|
|
79
80
|
| `fathom analyze <spec>` | Parse spec, estimate features |
|
|
@@ -84,6 +85,9 @@ $ fathom
|
|
|
84
85
|
| `fathom status` | Project overview |
|
|
85
86
|
| `fathom pricing` | Model pricing table |
|
|
86
87
|
| `fathom go` | Launch AI tool with context |
|
|
88
|
+
| `fathom install-plugin` | Install Claude Code plugin (skills + MCP config) |
|
|
89
|
+
| `fathom report` | Generate client reports (markdown, HTML, JSON) |
|
|
90
|
+
| `fathom sync` | Sync features to Linear, GitHub Issues, Notion, Jira |
|
|
87
91
|
|
|
88
92
|
## Environment Variables
|
|
89
93
|
|
package/dist/index.js
CHANGED
|
@@ -9428,7 +9428,7 @@ function scaffoldProject(projectName, opts = {}) {
|
|
|
9428
9428
|
}
|
|
9429
9429
|
mcpConfig.mcpServers.fathom = {
|
|
9430
9430
|
command: "npx",
|
|
9431
|
-
args: ["-y", "fathom-mcp@latest", "--project-dir", "."]
|
|
9431
|
+
args: ["-y", "fathom-token-mcp@latest", "--project-dir", "."]
|
|
9432
9432
|
};
|
|
9433
9433
|
writeFileSync3(mcpPath, JSON.stringify(mcpConfig, null, 2) + "\n");
|
|
9434
9434
|
log(chalk.green(" \u2713 .mcp.json (MCP auto-discovery)"));
|
|
@@ -16554,7 +16554,7 @@ var installPluginCommand = new Command21("install-plugin").description(
|
|
|
16554
16554
|
}
|
|
16555
16555
|
mcpConfig.mcpServers.fathom = {
|
|
16556
16556
|
command: "npx",
|
|
16557
|
-
args: ["-y", "fathom-mcp@latest", "--project-dir", "."]
|
|
16557
|
+
args: ["-y", "fathom-token-mcp@latest", "--project-dir", "."]
|
|
16558
16558
|
};
|
|
16559
16559
|
writeFileSync15(mcpPath, JSON.stringify(mcpConfig, null, 2) + "\n");
|
|
16560
16560
|
console.log(chalk22.green(" \u2713 .mcp.json (MCP auto-discovery)"));
|