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 == []