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 docs/cli.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CLI Reference

All commands are available after running `uv sync` and activating the virtual environment (`source .venv/bin/activate`).
All commands are available after installing DSAgt.

## Project Management

Expand Down
8 changes: 4 additions & 4 deletions docs/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ Proxy mode reads upstream LLM credentials from `.env` or the shell. See [`tests/

**Agent command not found.** The agent CLI is not installed or is not on PATH. See the [supported agents table](index.md#supported-agents).

**MCP servers not connecting.** Verify uv resolves the server commands:
**MCP servers not connecting.** Verify the server commands are on your PATH:

```bash
uv run which dsagt-registry-server
uv run which dsagt-knowledge-server
which dsagt-registry-server
which dsagt-knowledge-server
```

If missing, reinstall: `uv sync --reinstall`.
If missing, reinstall: `pip install --force-reinstall https://github.com/AI-ModCon/dsagt/archive/refs/tags/0.1.0.zip`.

**MLflow UI empty.** Confirm MLflow is running for the right project:

Expand Down
6 changes: 1 addition & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ DSAgt connects an MCP-compatible AI coding agent to tool registration, a semanti
## Prerequisites

- Python 3.12–3.13
- [uv](https://github.com/astral-sh/uv)
- One of the supported agent platforms above, installed and authenticated against your LLM provider

## Installation

```bash
git clone https://github.com/AI-ModCon/dsagt.git
cd dsagt
uv sync
source .venv/bin/activate
pip install https://github.com/AI-ModCon/dsagt/archive/refs/tags/0.1.0.zip
```

## Key Capabilities
Expand Down
5 changes: 1 addition & 4 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ This guide walks through knowledge ingest, tool registration, provenance, and ex

```bash
# Install
git clone https://github.com/AI-ModCon/dsagt.git
cd dsagt
uv sync
source .venv/bin/activate
pip install https://github.com/AI-ModCon/dsagt/archive/refs/tags/0.1.0.zip

# Set a convenience variable for the smoke test directory (not a normal dsagt step)
export SMOKE_DIR="$(pwd)/tests/smoke_test"
Expand Down
Loading