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:
parent
96393e56d5
commit
2960534461
|
|
@ -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
|
## Publishing a Tool
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
1. Install SmartTools: `pip install smarttools`
|
1. Install CmdForge: `pip install cmdforge`
|
||||||
2. Create an account at the registry website
|
2. Create an account at the registry website
|
||||||
3. Generate an API token from your dashboard
|
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
|
### Tool Structure
|
||||||
|
|
||||||
|
|
@ -67,12 +67,12 @@ Choose one of these categories:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd my-tool/
|
cd my-tool/
|
||||||
smarttools registry publish
|
cmdforge registry publish
|
||||||
```
|
```
|
||||||
|
|
||||||
Use `--dry-run` to validate without publishing:
|
Use `--dry-run` to validate without publishing:
|
||||||
```bash
|
```bash
|
||||||
smarttools registry publish --dry-run
|
cmdforge registry publish --dry-run
|
||||||
```
|
```
|
||||||
|
|
||||||
## Guidelines
|
## Guidelines
|
||||||
|
|
@ -98,7 +98,7 @@ Once a version is published, it cannot be modified. To make changes:
|
||||||
|
|
||||||
1. Update your tool locally
|
1. Update your tool locally
|
||||||
2. Bump the version in config.yaml
|
2. Bump the version in config.yaml
|
||||||
3. Run `smarttools registry publish`
|
3. Run `cmdforge registry publish`
|
||||||
|
|
||||||
## Deprecation
|
## Deprecation
|
||||||
|
|
||||||
|
|
@ -112,4 +112,4 @@ replacement: "username/toolname@2.0.0"
|
||||||
|
|
||||||
## Questions?
|
## 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).
|
||||||
|
|
|
||||||
16
README.md
16
README.md
|
|
@ -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
|
## 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:
|
Or use the CLI:
|
||||||
```bash
|
```bash
|
||||||
smarttools registry browse
|
cmdforge registry browse
|
||||||
smarttools registry search <query>
|
cmdforge registry search <query>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Install a Tool
|
## Install a Tool
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
smarttools registry install official/summarize
|
cmdforge registry install official/summarize
|
||||||
```
|
```
|
||||||
|
|
||||||
## Publish Your Own Tool
|
## Publish Your Own Tool
|
||||||
|
|
||||||
1. Create an account at the registry website
|
1. Create an account at the registry website
|
||||||
2. Generate an API token from your dashboard
|
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.
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.
|
||||||
|
|
||||||
## Repository Structure
|
## Repository Structure
|
||||||
|
|
||||||
```
|
```
|
||||||
SmartTools-Registry/
|
CmdForge-Registry/
|
||||||
├── tools/ # All published tools
|
├── tools/ # All published tools
|
||||||
│ ├── official/ # Official namespace
|
│ ├── official/ # Official namespace
|
||||||
│ │ ├── summarize/
|
│ │ ├── summarize/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue