Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
---

Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "datahub-talk-to-data-ui",
"name": "datahub-analytics-agent-ui",
"version": "0.1.0",
"private": true,
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand All @@ -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 == []
Expand Down
Loading