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.
Files changed (140) hide show
  1. konklave-0.1.0/.gitignore +121 -0
  2. konklave-0.1.0/LICENSE +661 -0
  3. konklave-0.1.0/PKG-INFO +512 -0
  4. konklave-0.1.0/README.md +463 -0
  5. konklave-0.1.0/konklave/__init__.py +10 -0
  6. konklave-0.1.0/konklave/__main__.py +12 -0
  7. konklave-0.1.0/konklave/cli.py +740 -0
  8. konklave-0.1.0/konklave/config.py +429 -0
  9. konklave-0.1.0/konklave/core/__init__.py +71 -0
  10. konklave-0.1.0/konklave/core/_constants.py +44 -0
  11. konklave-0.1.0/konklave/core/_diff_report.py +191 -0
  12. konklave-0.1.0/konklave/core/_learning.py +131 -0
  13. konklave-0.1.0/konklave/core/_persistence.py +217 -0
  14. konklave-0.1.0/konklave/core/_run_helpers.py +372 -0
  15. konklave-0.1.0/konklave/core/_step_execution.py +1117 -0
  16. konklave-0.1.0/konklave/core/agent_pool.py +713 -0
  17. konklave-0.1.0/konklave/core/agents.py +794 -0
  18. konklave-0.1.0/konklave/core/ask_mode.py +220 -0
  19. konklave-0.1.0/konklave/core/conductor.py +543 -0
  20. konklave-0.1.0/konklave/core/events.py +380 -0
  21. konklave-0.1.0/konklave/core/memory.py +762 -0
  22. konklave-0.1.0/konklave/core/pipeline.py +412 -0
  23. konklave-0.1.0/konklave/core/pipeline_loader.py +449 -0
  24. konklave-0.1.0/konklave/core/report.py +161 -0
  25. konklave-0.1.0/konklave/core/semantic_index.py +636 -0
  26. konklave-0.1.0/konklave/core/skills.py +496 -0
  27. konklave-0.1.0/konklave/core/snapshots.py +189 -0
  28. konklave-0.1.0/konklave/core/swarm.py +252 -0
  29. konklave-0.1.0/konklave/core/tutorial.py +107 -0
  30. konklave-0.1.0/konklave/core/versioning.py +369 -0
  31. konklave-0.1.0/konklave/core/web_search.py +160 -0
  32. konklave-0.1.0/konklave/core/work_mode.py +346 -0
  33. konklave-0.1.0/konklave/core/workspace_index.py +186 -0
  34. konklave-0.1.0/konklave/dashboard/README.md +60 -0
  35. konklave-0.1.0/konklave/dashboard/__init__.py +9 -0
  36. konklave-0.1.0/konklave/dashboard/app.py +985 -0
  37. konklave-0.1.0/konklave/eval/__init__.py +57 -0
  38. konklave-0.1.0/konklave/eval/config.py +114 -0
  39. konklave-0.1.0/konklave/eval/harness.py +79 -0
  40. konklave-0.1.0/konklave/eval/report.py +132 -0
  41. konklave-0.1.0/konklave/eval/runner.py +259 -0
  42. konklave-0.1.0/konklave/eval/task.py +132 -0
  43. konklave-0.1.0/konklave/eval/verify.py +168 -0
  44. konklave-0.1.0/konklave/gui/__init__.py +25 -0
  45. konklave-0.1.0/konklave/gui/__main__.py +21 -0
  46. konklave-0.1.0/konklave/gui/app.py +650 -0
  47. konklave-0.1.0/konklave/gui/event_bridge.py +157 -0
  48. konklave-0.1.0/konklave/gui/history_dialog.py +218 -0
  49. konklave-0.1.0/konklave/gui/main_window.py +1264 -0
  50. konklave-0.1.0/konklave/gui/settings_dialog.py +320 -0
  51. konklave-0.1.0/konklave/gui/snapshots_dialog.py +178 -0
  52. konklave-0.1.0/konklave/gui/theme.py +303 -0
  53. konklave-0.1.0/konklave/gui/workspace_dialog.py +129 -0
  54. konklave-0.1.0/konklave/i18n/__init__.py +25 -0
  55. konklave-0.1.0/konklave/i18n/de.json +132 -0
  56. konklave-0.1.0/konklave/i18n/en.json +132 -0
  57. konklave-0.1.0/konklave/i18n/loader.py +106 -0
  58. konklave-0.1.0/konklave/memory/__init__.py +11 -0
  59. konklave-0.1.0/konklave/memory/session_store.py +645 -0
  60. konklave-0.1.0/konklave/openrouter/__init__.py +34 -0
  61. konklave-0.1.0/konklave/openrouter/client.py +609 -0
  62. konklave-0.1.0/konklave/openrouter/costs.py +80 -0
  63. konklave-0.1.0/konklave/openrouter/models.py +190 -0
  64. konklave-0.1.0/konklave/openrouter/streaming.py +126 -0
  65. konklave-0.1.0/konklave/pipelines/__init__.py +6 -0
  66. konklave-0.1.0/konklave/pipelines/autonomous_loop.yaml +223 -0
  67. konklave-0.1.0/konklave/pipelines/autonomous_slice.yaml +85 -0
  68. konklave-0.1.0/konklave/pipelines/build_feature.yaml +328 -0
  69. konklave-0.1.0/konklave/pipelines/debug_issue.yaml +145 -0
  70. konklave-0.1.0/konklave/pipelines/fast.yaml +118 -0
  71. konklave-0.1.0/konklave/pipelines/quick.yaml +75 -0
  72. konklave-0.1.0/konklave/pipelines/refactor.yaml +140 -0
  73. konklave-0.1.0/konklave/pipelines/research.yaml +76 -0
  74. konklave-0.1.0/konklave/pipelines/thorough.yaml +236 -0
  75. konklave-0.1.0/konklave/prompts/__init__.py +6 -0
  76. konklave-0.1.0/konklave/prompts/_env.py +88 -0
  77. konklave-0.1.0/konklave/prompts/architect.de.md +53 -0
  78. konklave-0.1.0/konklave/prompts/architect.en.md +52 -0
  79. konklave-0.1.0/konklave/prompts/auditor.de.md +28 -0
  80. konklave-0.1.0/konklave/prompts/auditor.en.md +25 -0
  81. konklave-0.1.0/konklave/prompts/coder.de.md +73 -0
  82. konklave-0.1.0/konklave/prompts/coder.en.md +68 -0
  83. konklave-0.1.0/konklave/prompts/debugger.de.md +41 -0
  84. konklave-0.1.0/konklave/prompts/debugger.en.md +40 -0
  85. konklave-0.1.0/konklave/prompts/judge.de.md +31 -0
  86. konklave-0.1.0/konklave/prompts/judge.en.md +30 -0
  87. konklave-0.1.0/konklave/prompts/researcher.de.md +42 -0
  88. konklave-0.1.0/konklave/prompts/researcher.en.md +43 -0
  89. konklave-0.1.0/konklave/prompts/reviewer.de.md +40 -0
  90. konklave-0.1.0/konklave/prompts/reviewer.en.md +38 -0
  91. konklave-0.1.0/konklave/prompts/tester.de.md +30 -0
  92. konklave-0.1.0/konklave/prompts/tester.en.md +30 -0
  93. konklave-0.1.0/konklave/tools/__init__.py +124 -0
  94. konklave-0.1.0/konklave/tools/base.py +138 -0
  95. konklave-0.1.0/konklave/tools/file_tools.py +573 -0
  96. konklave-0.1.0/konklave/tools/glob_tool.py +157 -0
  97. konklave-0.1.0/konklave/tools/human_ask.py +134 -0
  98. konklave-0.1.0/konklave/tools/inter_agent.py +130 -0
  99. konklave-0.1.0/konklave/tools/media_tools.py +693 -0
  100. konklave-0.1.0/konklave/tools/memory_tool.py +185 -0
  101. konklave-0.1.0/konklave/tools/registry.py +164 -0
  102. konklave-0.1.0/konklave/tools/semantic_search.py +96 -0
  103. konklave-0.1.0/konklave/tools/shell_tool.py +812 -0
  104. konklave-0.1.0/konklave/tools/skill_tool.py +243 -0
  105. konklave-0.1.0/konklave/tools/spawn.py +258 -0
  106. konklave-0.1.0/konklave/tools/todo_tool.py +225 -0
  107. konklave-0.1.0/konklave/tools/web_tools.py +336 -0
  108. konklave-0.1.0/konklave/tools/workspace.py +71 -0
  109. konklave-0.1.0/konklave/ui/__init__.py +6 -0
  110. konklave-0.1.0/konklave/ui/_helpers.py +65 -0
  111. konklave-0.1.0/konklave/ui/app.py +343 -0
  112. konklave-0.1.0/konklave/ui/chat_recorder.py +208 -0
  113. konklave-0.1.0/konklave/ui/clipboard.py +115 -0
  114. konklave-0.1.0/konklave/ui/screens/__init__.py +6 -0
  115. konklave-0.1.0/konklave/ui/screens/_commands.py +362 -0
  116. konklave-0.1.0/konklave/ui/screens/_resume.py +420 -0
  117. konklave-0.1.0/konklave/ui/screens/_versions.py +274 -0
  118. konklave-0.1.0/konklave/ui/screens/help_screen.py +123 -0
  119. konklave-0.1.0/konklave/ui/screens/human_ask_screen.py +207 -0
  120. konklave-0.1.0/konklave/ui/screens/main_screen.py +861 -0
  121. konklave-0.1.0/konklave/ui/screens/model_selector.py +96 -0
  122. konklave-0.1.0/konklave/ui/screens/prompt_editor.py +204 -0
  123. konklave-0.1.0/konklave/ui/screens/role_selector.py +64 -0
  124. konklave-0.1.0/konklave/ui/screens/session_picker.py +112 -0
  125. konklave-0.1.0/konklave/ui/screens/settings_screen.py +832 -0
  126. konklave-0.1.0/konklave/ui/screens/snapshot_picker.py +86 -0
  127. konklave-0.1.0/konklave/ui/screens/version_picker.py +94 -0
  128. konklave-0.1.0/konklave/ui/screens/workspace_picker.py +104 -0
  129. konklave-0.1.0/konklave/ui/views/__init__.py +6 -0
  130. konklave-0.1.0/konklave/ui/views/advanced_view.py +492 -0
  131. konklave-0.1.0/konklave/ui/views/simple_view.py +158 -0
  132. konklave-0.1.0/konklave/ui/widgets/__init__.py +6 -0
  133. konklave-0.1.0/konklave/ui/widgets/activity_bar.py +171 -0
  134. konklave-0.1.0/konklave/ui/widgets/agent_card.py +150 -0
  135. konklave-0.1.0/konklave/ui/widgets/intervention_bar.py +177 -0
  136. konklave-0.1.0/konklave/ui/widgets/pipeline_graph.py +295 -0
  137. konklave-0.1.0/konklave/ui/widgets/queue_panel.py +222 -0
  138. konklave-0.1.0/konklave/ui/widgets/streaming_chat.py +412 -0
  139. konklave-0.1.0/konklave/ui/widgets/todo_panel.py +148 -0
  140. 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*