Rename SmartTools to CmdForge throughout registry

- Update README.md with new project name and URLs
- Update CONTRIBUTING.md with new CLI commands
- Update repository structure references

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
rob 2026-01-02 22:22:17 -04:00
parent 96393e56d5
commit 2960534461
2 changed files with 16 additions and 16 deletions

View File

@ -1,15 +1,15 @@
# Contributing to SmartTools Registry
# Contributing to CmdForge Registry
Thank you for contributing to the SmartTools ecosystem!
Thank you for contributing to the CmdForge ecosystem!
## Publishing a Tool
### Prerequisites
1. Install SmartTools: `pip install smarttools`
1. Install CmdForge: `pip install cmdforge`
2. Create an account at the registry website
3. Generate an API token from your dashboard
4. Configure your token: `smarttools config set-token YOUR_TOKEN`
4. Configure your token: `cmdforge config set-token YOUR_TOKEN`
### Tool Structure
@ -67,12 +67,12 @@ Choose one of these categories:
```bash
cd my-tool/
smarttools registry publish
cmdforge registry publish
```
Use `--dry-run` to validate without publishing:
```bash
smarttools registry publish --dry-run
cmdforge registry publish --dry-run
```
## Guidelines
@ -98,7 +98,7 @@ Once a version is published, it cannot be modified. To make changes:
1. Update your tool locally
2. Bump the version in config.yaml
3. Run `smarttools registry publish`
3. Run `cmdforge registry publish`
## Deprecation
@ -112,4 +112,4 @@ replacement: "username/toolname@2.0.0"
## Questions?
Open an issue on the [SmartTools repository](https://gitea.brrd.tech/rob/SmartTools/issues).
Open an issue on the [CmdForge repository](https://gitea.brrd.tech/rob/CmdForge/issues).

View File

@ -1,35 +1,35 @@
# SmartTools Registry
# CmdForge Registry
The official registry of tools for [SmartTools](https://gitea.brrd.tech/rob/SmartTools) - a lightweight personal tool builder for AI-powered CLI commands.
The official registry of tools for [CmdForge](https://gitea.brrd.tech/rob/CmdForge) - a lightweight personal tool builder for AI-powered CLI commands.
## Browse Tools
Visit the web UI: https://registry.smarttools.dev (or your self-hosted instance)
Visit the web UI: https://cmdforge.brrd.tech (or your self-hosted instance)
Or use the CLI:
```bash
smarttools registry browse
smarttools registry search <query>
cmdforge registry browse
cmdforge registry search <query>
```
## Install a Tool
```bash
smarttools registry install official/summarize
cmdforge registry install official/summarize
```
## Publish Your Own Tool
1. Create an account at the registry website
2. Generate an API token from your dashboard
3. Run `smarttools registry publish` in your tool directory
3. Run `cmdforge registry publish` in your tool directory
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.
## Repository Structure
```
SmartTools-Registry/
CmdForge-Registry/
├── tools/ # All published tools
│ ├── official/ # Official namespace
│ │ ├── summarize/