mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-22 08:38:08 +02:00
feat(connectors): generalize readiness and constraint handling (#212)
* feat(connectors): add postgres maxConnections * feat(connectors): add mysql maxConnections * feat(connectors): add sqlserver maxConnections * feat(connectors): rename snowflake pool config * docs: document connector maxConnections * feat(scan): add constraint discovery warning helper * feat(scan): carry structural warnings through reports * feat(postgres): soft-fail denied constraint discovery * feat(mysql): soft-fail denied constraint discovery * feat(sqlserver): soft-fail denied constraint discovery * feat(bigquery): soft-fail denied primary key discovery * feat(snowflake): report denied primary key discovery * test(scan): verify constraint discovery warnings * feat(historic-sql): use shared readiness probes * docs: document query history readiness probes * test(historic-sql): verify readiness probe registry * test(ingest): account for live database warnings artifact * Add skip option for agent setup
This commit is contained in:
parent
cfd1749ab9
commit
78b8a0c025
42 changed files with 2763 additions and 554 deletions
|
|
@ -9,7 +9,9 @@ admin surface for setup, ingest, status, daemon lifecycle, and debugging.
|
|||
Run `ktx setup` and select your agent client targets, or configure manually
|
||||
using the snippets below. Choose **Ask data questions with ktx MCP** for agent
|
||||
clients. Choose **Ask data questions + manage ktx with CLI commands** only when
|
||||
a developer or operator agent also needs pinned `ktx` admin commands.
|
||||
a developer or operator agent also needs pinned `ktx` admin commands. Choose
|
||||
**Skip agent setup for now** to leave agent integration incomplete and run
|
||||
`ktx setup --agents` later.
|
||||
|
||||
## Install with setup
|
||||
|
||||
|
|
@ -43,14 +45,19 @@ ktx setup --agents --target codex --global
|
|||
manifest lets status checks report agent readiness and lets future cleanup
|
||||
remove only files **ktx** installed.
|
||||
|
||||
The interactive command asks two questions:
|
||||
The interactive command asks what agents can do first:
|
||||
|
||||
```txt
|
||||
◆ What should agents be allowed to do with this ktx project?
|
||||
│ ○ Ask data questions with ktx MCP
|
||||
│ ○ Ask data questions + manage ktx with CLI commands
|
||||
│ ○ Skip agent setup for now
|
||||
└
|
||||
```
|
||||
|
||||
If you choose an install mode, it then asks which targets to install:
|
||||
|
||||
```txt
|
||||
◆ Which agent targets should ktx install?
|
||||
│ ◻ Claude Code
|
||||
│ ◻ Claude Desktop
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue