@context-forge/context-forge 0.6.43 → 0.6.44
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 +43 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# @context-forge/context-forge
|
|
2
|
+
|
|
3
|
+
Meta-package that installs the full Context Forge toolchain in one step.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @context-forge/context-forge
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This installs:
|
|
12
|
+
|
|
13
|
+
- **[@context-forge/cli](../cli/README.md)** — the `cf` command-line tool for project management, workflow navigation, and context generation
|
|
14
|
+
- **[@context-forge/mcp](../mcp-server/README.md)** — the MCP server for AI assistant integration (Claude Code, Cursor, etc.)
|
|
15
|
+
|
|
16
|
+
Both depend on [@context-forge/core](../core/README.md), which is installed automatically.
|
|
17
|
+
|
|
18
|
+
## What you get
|
|
19
|
+
|
|
20
|
+
After installing, you have:
|
|
21
|
+
|
|
22
|
+
- `cf` — the CLI (run `cf --help` to explore)
|
|
23
|
+
- `context-forge-mcp` — the MCP server binary
|
|
24
|
+
|
|
25
|
+
## Quick Start
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# Set up a project
|
|
29
|
+
cd ~/repos/my-project
|
|
30
|
+
cf init
|
|
31
|
+
|
|
32
|
+
# Add the MCP server to Claude Code
|
|
33
|
+
claude mcp add --transport stdio context-forge -- npx @context-forge/mcp
|
|
34
|
+
|
|
35
|
+
# Check it works
|
|
36
|
+
cf status
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
See the [Context Forge README](../../README.md) for full documentation.
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@context-forge/context-forge",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.44",
|
|
4
4
|
"description": "Context Forge — AI project context generation. Installs both the CLI and MCP server.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"node": ">=18.0.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@context-forge/cli": "0.6.
|
|
28
|
-
"@context-forge/mcp": "0.6.
|
|
27
|
+
"@context-forge/cli": "0.6.44",
|
|
28
|
+
"@context-forge/mcp": "0.6.44"
|
|
29
29
|
}
|
|
30
30
|
}
|