You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,7 @@
4
4
DevForge CLI meta-package that installs all 11 developer tools in one command. Provides a unified `devforge` CLI entry point delegating to sub-tools: api-contract-guardian, json2sql, deploydiff, configdrift, apighost, apiauth, envault, schemaforge, click-to-mcp, and deadcode.
5
5
6
6
## Build & Test Commands
7
-
- Install: `pip install -e .[all]` or `pip install devforge-tools`
8
-
- Install all tools: `pip install devforge-tools[all]`
7
+
- Install: `pip install -e ".[all]"` or `pip install "git+https://github.com/Coding-Dev-Tools/devforge-cli.git[all]"` (NOTE: `devforge-tools` is not on public PyPI — use the `git+` form)
Ten production-ready CLI tools for API contracts, SQL generation, infrastructure diffs, config drift, API mocking, key management, env syncing, schema conversion, MCP servers, and dead code removal — in a single package. Install one meta-package and get immediate access to all tools via the unified `devforge` command.
@@ -18,31 +16,28 @@ Ten production-ready CLI tools for API contracts, SQL generation, infrastructure
18
16
19
17
## Why the Suite?
20
18
21
-
Instead of installing ten separate tools and learning ten different CLIs, `pip install devforge-tools[all]` gives you:
19
+
Instead of installing ten separate tools and learning ten different CLIs, the `devforge` meta-package gives you:
22
20
23
21
-**Single CLI** (`devforge`) to invoke any tool — no context switching
24
22
-**Consistent flags, output formats, and help** across all tools
25
23
-**Shared configuration** — one install, all tools
26
24
27
25
## Installation
28
26
27
+
> **Install note:**`devforge-tools` is **not published on public PyPI**. Install it directly from the GitHub source with the `git+` form below (the only verified-working pip path right now).
28
+
29
29
```bash
30
30
# Install everything (recommended)
31
-
pip install devforge-tools[all]
32
-
33
-
# Or install individual tools
34
-
pip install devforge-tools[guard] # API Contract Guardian
Each tool can also be installed on its own from its own repo (e.g. `pip install git+https://github.com/Coding-Dev-Tools/apighost.git`). See each tool's README for details.
0 commit comments