roundtable-cli 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- roundtable_cli-0.4.0/.claude/commands/roundtable.md +40 -0
- roundtable_cli-0.4.0/.github/workflows/ci.yml +23 -0
- roundtable_cli-0.4.0/.gitignore +28 -0
- roundtable_cli-0.4.0/LICENSE +21 -0
- roundtable_cli-0.4.0/PKG-INFO +570 -0
- roundtable_cli-0.4.0/README.md +535 -0
- roundtable_cli-0.4.0/docs/assets/roundtable-dashboard.svg +73 -0
- roundtable_cli-0.4.0/docs/assets/roundtable-watch.svg +62 -0
- roundtable_cli-0.4.0/docs/backends.md +159 -0
- roundtable_cli-0.4.0/pyproject.toml +55 -0
- roundtable_cli-0.4.0/src/roundtable/__init__.py +10 -0
- roundtable_cli-0.4.0/src/roundtable/agents.py +218 -0
- roundtable_cli-0.4.0/src/roundtable/cli.py +722 -0
- roundtable_cli-0.4.0/src/roundtable/config.py +265 -0
- roundtable_cli-0.4.0/src/roundtable/dashboard.py +533 -0
- roundtable_cli-0.4.0/src/roundtable/discovery.py +71 -0
- roundtable_cli-0.4.0/src/roundtable/engine.py +714 -0
- roundtable_cli-0.4.0/src/roundtable/errors.py +20 -0
- roundtable_cli-0.4.0/src/roundtable/insights.py +210 -0
- roundtable_cli-0.4.0/src/roundtable/llm.py +1048 -0
- roundtable_cli-0.4.0/src/roundtable/mcp.py +248 -0
- roundtable_cli-0.4.0/src/roundtable/modelpick.py +309 -0
- roundtable_cli-0.4.0/src/roundtable/models.py +202 -0
- roundtable_cli-0.4.0/src/roundtable/prompts.py +205 -0
- roundtable_cli-0.4.0/src/roundtable/runctl.py +212 -0
- roundtable_cli-0.4.0/src/roundtable/scan.py +187 -0
- roundtable_cli-0.4.0/src/roundtable/store.py +339 -0
- roundtable_cli-0.4.0/tests/test_api.py +252 -0
- roundtable_cli-0.4.0/tests/test_cli.py +92 -0
- roundtable_cli-0.4.0/tests/test_cli_provider.py +100 -0
- roundtable_cli-0.4.0/tests/test_dashboard.py +54 -0
- roundtable_cli-0.4.0/tests/test_discovery.py +43 -0
- roundtable_cli-0.4.0/tests/test_engine.py +339 -0
- roundtable_cli-0.4.0/tests/test_hardening.py +372 -0
- roundtable_cli-0.4.0/tests/test_ingest.py +49 -0
- roundtable_cli-0.4.0/tests/test_insights.py +93 -0
- roundtable_cli-0.4.0/tests/test_llm.py +92 -0
- roundtable_cli-0.4.0/tests/test_map.py +39 -0
- roundtable_cli-0.4.0/tests/test_modelpick.py +244 -0
- roundtable_cli-0.4.0/tests/test_models.py +118 -0
- roundtable_cli-0.4.0/tests/test_pi_provider.py +363 -0
- roundtable_cli-0.4.0/tests/test_run_progress.py +61 -0
- roundtable_cli-0.4.0/tests/test_scan.py +55 -0
- roundtable_cli-0.4.0/tests/test_store.py +87 -0
- roundtable_cli-0.4.0/uv.lock +2173 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# /roundtable
|
|
2
|
+
|
|
3
|
+
Run the roundtable multi-agent orchestration tool against the current project.
|
|
4
|
+
|
|
5
|
+
**Usage:** `/roundtable <goal>`
|
|
6
|
+
|
|
7
|
+
Drive the full roundtable workflow end-to-end using the `roundtable` CLI:
|
|
8
|
+
|
|
9
|
+
## Workflow
|
|
10
|
+
|
|
11
|
+
1. **Check for existing config** — look for `roundtable.config.yaml` in the project root.
|
|
12
|
+
- If missing, run `roundtable init .` to scaffold `.roundtable/` and the default config.
|
|
13
|
+
- Remind the user to set their agent/model in `roundtable.config.yaml` if it's freshly created.
|
|
14
|
+
|
|
15
|
+
2. **Generate a plan** — run `roundtable plan --goal "$ARGUMENTS"` where `$ARGUMENTS` is the
|
|
16
|
+
goal text the user passed to this command.
|
|
17
|
+
- Show the user the plan summary printed by the command.
|
|
18
|
+
- If a plan already exists and the user didn't say to redo it, ask whether to overwrite.
|
|
19
|
+
|
|
20
|
+
3. **Review** — show the user `.roundtable/plan/PLAN.md` (use `cat` or Read) so they can
|
|
21
|
+
review phases and tasks before approving.
|
|
22
|
+
|
|
23
|
+
4. **Approve** — run `roundtable approve` to mark the plan ready for execution.
|
|
24
|
+
|
|
25
|
+
5. **Run** — run `roundtable run --approve` to execute all phases with live progress.
|
|
26
|
+
- The command streams inline progress and starts a web dashboard; share the dashboard URL.
|
|
27
|
+
- Wait for it to complete (it prints "run complete" when done).
|
|
28
|
+
|
|
29
|
+
6. **Report** — after completion, run `roundtable status` and summarise results for the user.
|
|
30
|
+
Point them to `.roundtable/docs/FINAL.md` for the main orchestrator's wrap-up.
|
|
31
|
+
|
|
32
|
+
## Notes
|
|
33
|
+
|
|
34
|
+
- All roundtable artifacts live under `.roundtable/` — the project's actual files are not touched
|
|
35
|
+
except by the agents during task execution.
|
|
36
|
+
- If a run is interrupted (Ctrl-C), it can be resumed with `roundtable run` — completed phases
|
|
37
|
+
are skipped automatically.
|
|
38
|
+
- To only generate and review the plan without running: stop after step 3.
|
|
39
|
+
- To map an existing codebase first: run `roundtable map` before `roundtable plan`, then pass
|
|
40
|
+
`--prd .roundtable/docs/PRD.md` to `roundtable plan` instead of `--goal`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
python-version: ["3.11", "3.12"]
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
- uses: actions/setup-python@v5
|
|
18
|
+
with:
|
|
19
|
+
python-version: ${{ matrix.python-version }}
|
|
20
|
+
- name: Install
|
|
21
|
+
run: pip install -e ".[dev]"
|
|
22
|
+
- name: Test
|
|
23
|
+
run: pytest -q
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
.eggs/
|
|
6
|
+
build/
|
|
7
|
+
dist/
|
|
8
|
+
|
|
9
|
+
# Virtualenvs
|
|
10
|
+
.venv/
|
|
11
|
+
venv/
|
|
12
|
+
|
|
13
|
+
# Test / tooling caches
|
|
14
|
+
.pytest_cache/
|
|
15
|
+
.mypy_cache/
|
|
16
|
+
.ruff_cache/
|
|
17
|
+
|
|
18
|
+
# Env / secrets
|
|
19
|
+
.env
|
|
20
|
+
|
|
21
|
+
# Roundtable run artifacts (per-project, not source)
|
|
22
|
+
.roundtable/
|
|
23
|
+
|
|
24
|
+
# Per-project roundtable config (generated by `roundtable init`)
|
|
25
|
+
roundtable.config.yaml
|
|
26
|
+
|
|
27
|
+
# Personal branding drafts (not source)
|
|
28
|
+
LINKEDIN_POSTS.md
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Abdur Rahman
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|