From e8b50035b9c7fb62aeae765b79e6ead631d5e7f1 Mon Sep 17 00:00:00 2001 From: CooperSheroy Date: Fri, 12 Jun 2026 09:02:25 +0530 Subject: [PATCH] docs: fix provider registry path Signed-off-by: CooperSheroy --- README.md | 12 ++++++------ pyproject.toml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4ef9c6c..3040e19 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ Create and activate a virtual environment first (all `make` targets assume the v ```bash # Clone the repository -git clone https://github.com/NVIDIA/skillspector.git -cd skillspector +git clone https://github.com/NVIDIA/SkillSpector.git +cd SkillSpector # Create and activate virtual environment uv venv .venv && source .venv/bin/activate @@ -344,7 +344,7 @@ Issues (2) | `OPENAI_BASE_URL` | Override the OpenAI endpoint (e.g. point at Ollama). | Optional | | `ANTHROPIC_API_KEY` | Credential for the Anthropic provider (`SKILLSPECTOR_PROVIDER=anthropic`). | Required for LLM analysis when `SKILLSPECTOR_PROVIDER=anthropic` | | `SKILLSPECTOR_MODEL` | Override the active provider's default model. See the LLM Analysis table for each provider's default. | Optional | -| `SKILLSPECTOR_MODEL_REGISTRY` | Override the bundled per-provider YAML registry (`src/skillspector/providers/.yaml`) with a custom path. | Optional | +| `SKILLSPECTOR_MODEL_REGISTRY` | Override the bundled per-provider YAML registry (`src/skillspector/providers//model_registry.yaml`) with a custom path. | Optional | | `SKILLSPECTOR_LOG_LEVEL` | Log level: `DEBUG`, `INFO`, `WARNING`, `ERROR` (default: `WARNING`). | Optional | ### CLI Options @@ -368,8 +368,8 @@ All `make` targets assume a virtual environment is already created and activated ```bash # Clone, create venv, activate, install dev dependencies -git clone https://github.com/NVIDIA/skillspector.git -cd skillspector +git clone https://github.com/NVIDIA/SkillSpector.git +cd SkillSpector uv venv .venv && source .venv/bin/activate # or: python3 -m venv .venv && source .venv/bin/activate make install-dev @@ -466,4 +466,4 @@ Contributions are welcome! Please read our contributing guidelines and submit pu ## Support -- **Issues**: [GitHub Issues](https://github.com/NVIDIA/skillspector/issues) +- **Issues**: [GitHub Issues](https://github.com/NVIDIA/SkillSpector/issues) diff --git a/pyproject.toml b/pyproject.toml index 732e482..828fde5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,9 +60,9 @@ dev = [ skillspector = "skillspector.cli:app" [project.urls] -Homepage = "https://github.com/NVIDIA/skillspector" -Documentation = "https://github.com/NVIDIA/skillspector#readme" -Issues = "https://github.com/NVIDIA/skillspector/issues" +Homepage = "https://github.com/NVIDIA/SkillSpector" +Documentation = "https://github.com/NVIDIA/SkillSpector#readme" +Issues = "https://github.com/NVIDIA/SkillSpector/issues" [tool.hatch.build] exclude = [".claude/", ".cursor/", ".agents/"]