Skip to content

Commit ef9b860

Browse files
fix: update remaining old devforge references to devforge-tools by reviewer-B
1 parent cb1a288 commit ef9b860

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
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.
55

66
## Build & Test Commands
7-
- Install: `pip install -e .[all]` or `pip install devforge`
8-
- Install all tools: `pip install devforge[all]`
7+
- Install: `pip install -e .[all]` or `pip install devforge-tools`
8+
- Install all tools: `pip install devforge-tools[all]`
99
- Test: `pytest tests/` (or `python -m pytest tests/ -v --tb=short`)
1010
- Lint: `ruff check .`
1111
- Build: `pip install build twine && python -m build && twine check dist/*`

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies = [
2626
"rich>=13.0.0",
2727
]
2828

29-
# Optional groups — install with: pip install devforge[all]
29+
# Optional groups install with: pip install devforge-tools[all]
3030
[project.optional-dependencies]
3131
guard = ["api-contract-guardian>=0.1.0"]
3232
sql = ["json2sql>=0.1.0"]

src/devforge/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def install(
9696
console.print(f"Available: {', '.join(TOOLS.keys())}, 'all'")
9797
raise typer.Exit(code=1)
9898

99-
pkg = f"devforge[{extras}]"
99+
pkg = f"devforge-tools[{extras}]"
100100
console.print(f"[yellow]Installing {pkg}...[/yellow]")
101101
try:
102102
result = subprocess.run([sys.executable, "-m", "pip", "install", pkg], capture_output=True, text=True)

0 commit comments

Comments
 (0)