From 296053446157aae4ccac10bc1c445df2c74c3b84 Mon Sep 17 00:00:00 2001 From: rob Date: Fri, 2 Jan 2026 22:22:17 -0400 Subject: [PATCH] Rename SmartTools to CmdForge throughout registry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- CONTRIBUTING.md | 16 ++++++++-------- README.md | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 72ec330..fbf6741 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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). diff --git a/README.md b/README.md index b13fe19..10082a6 100644 --- a/README.md +++ b/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 -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 +cmdforge registry browse +cmdforge registry search ``` ## 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/