From 3a06d60e8b525e37e95afd9c528e7f6498a2832a Mon Sep 17 00:00:00 2001 From: Shirshanka Das Date: Fri, 24 Apr 2026 11:38:54 -0700 Subject: [PATCH] chore: remove internal name references from docs and metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - CLAUDE.md: /path/to/talkster → /path/to/analytics-agent - skills/*/SKILL.md: author: talkster → author: analytics-agent - frontend/package.json: datahub-talk-to-data-ui → datahub-analytics-agent-ui - tests/unit/test_config.py: test_talkster_* → test_yaml_* Runtime renames (docker-compose.yml, quickstart.sh) are intentionally deferred — they require a one-time migration path which will be added on top of the bootstrap CLI (PR #12). Co-Authored-By: Claude Sonnet 4.6 (1M context) --- CLAUDE.md | 2 +- backend/src/analytics_agent/skills/improve-context/SKILL.md | 2 +- backend/src/analytics_agent/skills/publish-analysis/SKILL.md | 2 +- backend/src/analytics_agent/skills/save-correction/SKILL.md | 2 +- frontend/package.json | 2 +- tests/unit/test_config.py | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 0deb163..ca78083 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -23,7 +23,7 @@ uv run python -c "import analytics_agent.main" uv run pytest tests/unit/ -v # Test the full agent pipeline (needs credentials) -cd /path/to/talkster && set -a && source .env && set +a && \ +cd /path/to/analytics-agent && set -a && source .env && set +a && \ uv run pytest tests/integration/ -v -s ``` diff --git a/backend/src/analytics_agent/skills/improve-context/SKILL.md b/backend/src/analytics_agent/skills/improve-context/SKILL.md index 98f9a69..0ebe659 100644 --- a/backend/src/analytics_agent/skills/improve-context/SKILL.md +++ b/backend/src/analytics_agent/skills/improve-context/SKILL.md @@ -2,7 +2,7 @@ name: improve_context description: Use this skill when the user types /improve-context or asks to capture learnings, improve documentation, or enrich the knowledge base based on this conversation. metadata: - author: talkster + author: analytics-agent version: "1.0" --- diff --git a/backend/src/analytics_agent/skills/publish-analysis/SKILL.md b/backend/src/analytics_agent/skills/publish-analysis/SKILL.md index a0123aa..c96e083 100644 --- a/backend/src/analytics_agent/skills/publish-analysis/SKILL.md +++ b/backend/src/analytics_agent/skills/publish-analysis/SKILL.md @@ -9,7 +9,7 @@ license: MIT compatibility: Requires DataHub write-back enabled in Settings → Connections allowed-tools: search_documents, get_entities, publish_analysis metadata: - author: talkster + author: analytics-agent version: "1.0" --- diff --git a/backend/src/analytics_agent/skills/save-correction/SKILL.md b/backend/src/analytics_agent/skills/save-correction/SKILL.md index 4991d0f..200d6e6 100644 --- a/backend/src/analytics_agent/skills/save-correction/SKILL.md +++ b/backend/src/analytics_agent/skills/save-correction/SKILL.md @@ -11,7 +11,7 @@ license: MIT compatibility: Requires DataHub write-back enabled in Settings → Connections allowed-tools: search, get_entities, list_schema_fields, search_documents, save_correction metadata: - author: talkster + author: analytics-agent version: "2.0" --- diff --git a/frontend/package.json b/frontend/package.json index 3b8132b..c14bd9b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,5 +1,5 @@ { - "name": "datahub-talk-to-data-ui", + "name": "datahub-analytics-agent-ui", "version": "0.1.0", "private": true, "type": "module", diff --git a/tests/unit/test_config.py b/tests/unit/test_config.py index d164c13..57a5f6e 100644 --- a/tests/unit/test_config.py +++ b/tests/unit/test_config.py @@ -37,7 +37,7 @@ def test_context_platform_config_full(): assert plat.token == "tok123" -def test_talkster_yaml_config_parse(): +def test_yaml_config_parse(): data = { "engines": [{"type": "snowflake", "name": "prod", "connection": {"account": "xy12345"}}], "context_platforms": [ @@ -52,7 +52,7 @@ def test_talkster_yaml_config_parse(): assert cfg.context_platforms[0].url == "http://localhost:8080" -def test_talkster_yaml_config_empty(): +def test_yaml_config_empty(): cfg = AnalyticsAgentYamlConfig.model_validate({}) assert cfg.engines == [] assert cfg.context_platforms == []