konklave 0.1.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.
- konklave-0.1.0/.gitignore +121 -0
- konklave-0.1.0/LICENSE +661 -0
- konklave-0.1.0/PKG-INFO +512 -0
- konklave-0.1.0/README.md +463 -0
- konklave-0.1.0/konklave/__init__.py +10 -0
- konklave-0.1.0/konklave/__main__.py +12 -0
- konklave-0.1.0/konklave/cli.py +740 -0
- konklave-0.1.0/konklave/config.py +429 -0
- konklave-0.1.0/konklave/core/__init__.py +71 -0
- konklave-0.1.0/konklave/core/_constants.py +44 -0
- konklave-0.1.0/konklave/core/_diff_report.py +191 -0
- konklave-0.1.0/konklave/core/_learning.py +131 -0
- konklave-0.1.0/konklave/core/_persistence.py +217 -0
- konklave-0.1.0/konklave/core/_run_helpers.py +372 -0
- konklave-0.1.0/konklave/core/_step_execution.py +1117 -0
- konklave-0.1.0/konklave/core/agent_pool.py +713 -0
- konklave-0.1.0/konklave/core/agents.py +794 -0
- konklave-0.1.0/konklave/core/ask_mode.py +220 -0
- konklave-0.1.0/konklave/core/conductor.py +543 -0
- konklave-0.1.0/konklave/core/events.py +380 -0
- konklave-0.1.0/konklave/core/memory.py +762 -0
- konklave-0.1.0/konklave/core/pipeline.py +412 -0
- konklave-0.1.0/konklave/core/pipeline_loader.py +449 -0
- konklave-0.1.0/konklave/core/report.py +161 -0
- konklave-0.1.0/konklave/core/semantic_index.py +636 -0
- konklave-0.1.0/konklave/core/skills.py +496 -0
- konklave-0.1.0/konklave/core/snapshots.py +189 -0
- konklave-0.1.0/konklave/core/swarm.py +252 -0
- konklave-0.1.0/konklave/core/tutorial.py +107 -0
- konklave-0.1.0/konklave/core/versioning.py +369 -0
- konklave-0.1.0/konklave/core/web_search.py +160 -0
- konklave-0.1.0/konklave/core/work_mode.py +346 -0
- konklave-0.1.0/konklave/core/workspace_index.py +186 -0
- konklave-0.1.0/konklave/dashboard/README.md +60 -0
- konklave-0.1.0/konklave/dashboard/__init__.py +9 -0
- konklave-0.1.0/konklave/dashboard/app.py +985 -0
- konklave-0.1.0/konklave/eval/__init__.py +57 -0
- konklave-0.1.0/konklave/eval/config.py +114 -0
- konklave-0.1.0/konklave/eval/harness.py +79 -0
- konklave-0.1.0/konklave/eval/report.py +132 -0
- konklave-0.1.0/konklave/eval/runner.py +259 -0
- konklave-0.1.0/konklave/eval/task.py +132 -0
- konklave-0.1.0/konklave/eval/verify.py +168 -0
- konklave-0.1.0/konklave/gui/__init__.py +25 -0
- konklave-0.1.0/konklave/gui/__main__.py +21 -0
- konklave-0.1.0/konklave/gui/app.py +650 -0
- konklave-0.1.0/konklave/gui/event_bridge.py +157 -0
- konklave-0.1.0/konklave/gui/history_dialog.py +218 -0
- konklave-0.1.0/konklave/gui/main_window.py +1264 -0
- konklave-0.1.0/konklave/gui/settings_dialog.py +320 -0
- konklave-0.1.0/konklave/gui/snapshots_dialog.py +178 -0
- konklave-0.1.0/konklave/gui/theme.py +303 -0
- konklave-0.1.0/konklave/gui/workspace_dialog.py +129 -0
- konklave-0.1.0/konklave/i18n/__init__.py +25 -0
- konklave-0.1.0/konklave/i18n/de.json +132 -0
- konklave-0.1.0/konklave/i18n/en.json +132 -0
- konklave-0.1.0/konklave/i18n/loader.py +106 -0
- konklave-0.1.0/konklave/memory/__init__.py +11 -0
- konklave-0.1.0/konklave/memory/session_store.py +645 -0
- konklave-0.1.0/konklave/openrouter/__init__.py +34 -0
- konklave-0.1.0/konklave/openrouter/client.py +609 -0
- konklave-0.1.0/konklave/openrouter/costs.py +80 -0
- konklave-0.1.0/konklave/openrouter/models.py +190 -0
- konklave-0.1.0/konklave/openrouter/streaming.py +126 -0
- konklave-0.1.0/konklave/pipelines/__init__.py +6 -0
- konklave-0.1.0/konklave/pipelines/autonomous_loop.yaml +223 -0
- konklave-0.1.0/konklave/pipelines/autonomous_slice.yaml +85 -0
- konklave-0.1.0/konklave/pipelines/build_feature.yaml +328 -0
- konklave-0.1.0/konklave/pipelines/debug_issue.yaml +145 -0
- konklave-0.1.0/konklave/pipelines/fast.yaml +118 -0
- konklave-0.1.0/konklave/pipelines/quick.yaml +75 -0
- konklave-0.1.0/konklave/pipelines/refactor.yaml +140 -0
- konklave-0.1.0/konklave/pipelines/research.yaml +76 -0
- konklave-0.1.0/konklave/pipelines/thorough.yaml +236 -0
- konklave-0.1.0/konklave/prompts/__init__.py +6 -0
- konklave-0.1.0/konklave/prompts/_env.py +88 -0
- konklave-0.1.0/konklave/prompts/architect.de.md +53 -0
- konklave-0.1.0/konklave/prompts/architect.en.md +52 -0
- konklave-0.1.0/konklave/prompts/auditor.de.md +28 -0
- konklave-0.1.0/konklave/prompts/auditor.en.md +25 -0
- konklave-0.1.0/konklave/prompts/coder.de.md +73 -0
- konklave-0.1.0/konklave/prompts/coder.en.md +68 -0
- konklave-0.1.0/konklave/prompts/debugger.de.md +41 -0
- konklave-0.1.0/konklave/prompts/debugger.en.md +40 -0
- konklave-0.1.0/konklave/prompts/judge.de.md +31 -0
- konklave-0.1.0/konklave/prompts/judge.en.md +30 -0
- konklave-0.1.0/konklave/prompts/researcher.de.md +42 -0
- konklave-0.1.0/konklave/prompts/researcher.en.md +43 -0
- konklave-0.1.0/konklave/prompts/reviewer.de.md +40 -0
- konklave-0.1.0/konklave/prompts/reviewer.en.md +38 -0
- konklave-0.1.0/konklave/prompts/tester.de.md +30 -0
- konklave-0.1.0/konklave/prompts/tester.en.md +30 -0
- konklave-0.1.0/konklave/tools/__init__.py +124 -0
- konklave-0.1.0/konklave/tools/base.py +138 -0
- konklave-0.1.0/konklave/tools/file_tools.py +573 -0
- konklave-0.1.0/konklave/tools/glob_tool.py +157 -0
- konklave-0.1.0/konklave/tools/human_ask.py +134 -0
- konklave-0.1.0/konklave/tools/inter_agent.py +130 -0
- konklave-0.1.0/konklave/tools/media_tools.py +693 -0
- konklave-0.1.0/konklave/tools/memory_tool.py +185 -0
- konklave-0.1.0/konklave/tools/registry.py +164 -0
- konklave-0.1.0/konklave/tools/semantic_search.py +96 -0
- konklave-0.1.0/konklave/tools/shell_tool.py +812 -0
- konklave-0.1.0/konklave/tools/skill_tool.py +243 -0
- konklave-0.1.0/konklave/tools/spawn.py +258 -0
- konklave-0.1.0/konklave/tools/todo_tool.py +225 -0
- konklave-0.1.0/konklave/tools/web_tools.py +336 -0
- konklave-0.1.0/konklave/tools/workspace.py +71 -0
- konklave-0.1.0/konklave/ui/__init__.py +6 -0
- konklave-0.1.0/konklave/ui/_helpers.py +65 -0
- konklave-0.1.0/konklave/ui/app.py +343 -0
- konklave-0.1.0/konklave/ui/chat_recorder.py +208 -0
- konklave-0.1.0/konklave/ui/clipboard.py +115 -0
- konklave-0.1.0/konklave/ui/screens/__init__.py +6 -0
- konklave-0.1.0/konklave/ui/screens/_commands.py +362 -0
- konklave-0.1.0/konklave/ui/screens/_resume.py +420 -0
- konklave-0.1.0/konklave/ui/screens/_versions.py +274 -0
- konklave-0.1.0/konklave/ui/screens/help_screen.py +123 -0
- konklave-0.1.0/konklave/ui/screens/human_ask_screen.py +207 -0
- konklave-0.1.0/konklave/ui/screens/main_screen.py +861 -0
- konklave-0.1.0/konklave/ui/screens/model_selector.py +96 -0
- konklave-0.1.0/konklave/ui/screens/prompt_editor.py +204 -0
- konklave-0.1.0/konklave/ui/screens/role_selector.py +64 -0
- konklave-0.1.0/konklave/ui/screens/session_picker.py +112 -0
- konklave-0.1.0/konklave/ui/screens/settings_screen.py +832 -0
- konklave-0.1.0/konklave/ui/screens/snapshot_picker.py +86 -0
- konklave-0.1.0/konklave/ui/screens/version_picker.py +94 -0
- konklave-0.1.0/konklave/ui/screens/workspace_picker.py +104 -0
- konklave-0.1.0/konklave/ui/views/__init__.py +6 -0
- konklave-0.1.0/konklave/ui/views/advanced_view.py +492 -0
- konklave-0.1.0/konklave/ui/views/simple_view.py +158 -0
- konklave-0.1.0/konklave/ui/widgets/__init__.py +6 -0
- konklave-0.1.0/konklave/ui/widgets/activity_bar.py +171 -0
- konklave-0.1.0/konklave/ui/widgets/agent_card.py +150 -0
- konklave-0.1.0/konklave/ui/widgets/intervention_bar.py +177 -0
- konklave-0.1.0/konklave/ui/widgets/pipeline_graph.py +295 -0
- konklave-0.1.0/konklave/ui/widgets/queue_panel.py +222 -0
- konklave-0.1.0/konklave/ui/widgets/streaming_chat.py +412 -0
- konklave-0.1.0/konklave/ui/widgets/todo_panel.py +148 -0
- konklave-0.1.0/pyproject.toml +130 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# --- Python build / venv / cache ---
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
build/
|
|
8
|
+
dist/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
*.egg
|
|
11
|
+
.eggs/
|
|
12
|
+
|
|
13
|
+
# Virtual environments
|
|
14
|
+
.venv/
|
|
15
|
+
venv/
|
|
16
|
+
env/
|
|
17
|
+
ENV/
|
|
18
|
+
|
|
19
|
+
# Hatch dev environment
|
|
20
|
+
.hatch/
|
|
21
|
+
|
|
22
|
+
# --- Tool caches ---
|
|
23
|
+
.pytest_cache/
|
|
24
|
+
.ruff_cache/
|
|
25
|
+
.mypy_cache/
|
|
26
|
+
.coverage
|
|
27
|
+
.coverage.*
|
|
28
|
+
htmlcov/
|
|
29
|
+
coverage.xml
|
|
30
|
+
.tox/
|
|
31
|
+
.cache/
|
|
32
|
+
.pyright_cache/
|
|
33
|
+
|
|
34
|
+
# --- Local runtime artefacts ---
|
|
35
|
+
# SQLite session database (contains conversation history)
|
|
36
|
+
.konklave/sessions.db
|
|
37
|
+
.konklave/sessions.db-journal
|
|
38
|
+
.konklave/sessions.db-wal
|
|
39
|
+
.konklave/sessions.db-shm
|
|
40
|
+
|
|
41
|
+
# Workspace-local analysis scratch and snapshots
|
|
42
|
+
.konklave_runs/
|
|
43
|
+
.konklave/snapshots/
|
|
44
|
+
.konklave/memories/
|
|
45
|
+
|
|
46
|
+
# --- Secrets & config ---
|
|
47
|
+
# Local environment (OpenRouter API key, etc.)
|
|
48
|
+
.env
|
|
49
|
+
.env.*
|
|
50
|
+
!.env.example
|
|
51
|
+
# Local config overrides that may contain secrets / machine-specific paths
|
|
52
|
+
.konklave/config.local.toml
|
|
53
|
+
.konklave/*.local.*
|
|
54
|
+
# Keyring backends on some platforms drop a file in the working dir
|
|
55
|
+
*.keyring
|
|
56
|
+
|
|
57
|
+
# Konklave local config + secrets (never commit)
|
|
58
|
+
.konklave/MEMORY.md
|
|
59
|
+
.konklave/USER.md
|
|
60
|
+
# Machine-specific config (personal workspace paths, model picks) — use .env.example as the template
|
|
61
|
+
.konklave/config.toml
|
|
62
|
+
|
|
63
|
+
# --- Editor / OS junk ---
|
|
64
|
+
.idea/
|
|
65
|
+
.vscode/
|
|
66
|
+
*.swp
|
|
67
|
+
*.swo
|
|
68
|
+
*~
|
|
69
|
+
.DS_Store
|
|
70
|
+
Thumbs.db
|
|
71
|
+
desktop.ini
|
|
72
|
+
|
|
73
|
+
# --- Log dumps ---
|
|
74
|
+
*.log
|
|
75
|
+
*.log.*
|
|
76
|
+
!.konklave/*.log
|
|
77
|
+
log.txt
|
|
78
|
+
test_out.txt
|
|
79
|
+
pytest_out.txt
|
|
80
|
+
.pytest.out
|
|
81
|
+
.pytest_out.txt
|
|
82
|
+
test_run.log
|
|
83
|
+
pyflakes_out.txt
|
|
84
|
+
|
|
85
|
+
# --- Test scratch files (created by various test harnesses) ---
|
|
86
|
+
_c.py
|
|
87
|
+
_check.py
|
|
88
|
+
_cunt.py
|
|
89
|
+
_count.py
|
|
90
|
+
_check_docstrings.py
|
|
91
|
+
_find_uncovered.py
|
|
92
|
+
bericht.md
|
|
93
|
+
ende.md
|
|
94
|
+
test_compile.py
|
|
95
|
+
test_input.txt
|
|
96
|
+
test_*.txt
|
|
97
|
+
workspace_root/
|
|
98
|
+
|
|
99
|
+
# --- Regenerable analysis / report dumps ---
|
|
100
|
+
compile_output*.txt
|
|
101
|
+
coverage_report.txt
|
|
102
|
+
pytest_full.txt
|
|
103
|
+
pytest_quality_run.txt
|
|
104
|
+
pytest_*.txt
|
|
105
|
+
# Scratch pytest dump and "current" eval output (archived runs live in eval_results/)
|
|
106
|
+
_r.txt
|
|
107
|
+
out.json
|
|
108
|
+
test_*.out
|
|
109
|
+
|
|
110
|
+
# --- Screen recordings / large media (never commit) ---
|
|
111
|
+
*.mp4
|
|
112
|
+
*.mov
|
|
113
|
+
*.mkv
|
|
114
|
+
*.webm
|
|
115
|
+
|
|
116
|
+
# --- Node (only if anyone later adds a JS component) ---
|
|
117
|
+
node_modules/
|
|
118
|
+
npm-debug.log*
|
|
119
|
+
yarn-debug.log*
|
|
120
|
+
yarn-error.log*
|
|
121
|
+
pnpm-debug.log*
|