decepticon 1.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 (1120) hide show
  1. decepticon-1.1.0/.dockerignore +61 -0
  2. decepticon-1.1.0/.env.example +265 -0
  3. decepticon-1.1.0/.git +1 -0
  4. decepticon-1.1.0/.github/CODEOWNERS +5 -0
  5. decepticon-1.1.0/.github/FUNDING.yml +1 -0
  6. decepticon-1.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +70 -0
  7. decepticon-1.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +53 -0
  8. decepticon-1.1.0/.github/pull_request_template.md +21 -0
  9. decepticon-1.1.0/.github/workflows/ci.yml +359 -0
  10. decepticon-1.1.0/.github/workflows/codeql.yml +32 -0
  11. decepticon-1.1.0/.github/workflows/release-recover.yml +83 -0
  12. decepticon-1.1.0/.github/workflows/release.yml +640 -0
  13. decepticon-1.1.0/.gitignore +117 -0
  14. decepticon-1.1.0/.gitmodules +7 -0
  15. decepticon-1.1.0/.omc/state/agent-replay-07e9b2a4-260a-43da-88bd-366331608629.jsonl +3 -0
  16. decepticon-1.1.0/.omc/state/hud-stdin-cache.json +1 -0
  17. decepticon-1.1.0/.omc/state/last-tool-error.json +7 -0
  18. decepticon-1.1.0/.omc/state/sessions/07e9b2a4-260a-43da-88bd-366331608629/hud-state.json +6 -0
  19. decepticon-1.1.0/.pre-commit-config.yaml +40 -0
  20. decepticon-1.1.0/.python-version +1 -0
  21. decepticon-1.1.0/CODE_OF_CONDUCT.md +52 -0
  22. decepticon-1.1.0/CONTRIBUTING.md +89 -0
  23. decepticon-1.1.0/LICENSE +201 -0
  24. decepticon-1.1.0/Makefile +292 -0
  25. decepticon-1.1.0/PKG-INFO +247 -0
  26. decepticon-1.1.0/README.md +204 -0
  27. decepticon-1.1.0/README_KO.md +202 -0
  28. decepticon-1.1.0/SECURITY.md +45 -0
  29. decepticon-1.1.0/assets/benchmark/coverage.png +0 -0
  30. decepticon-1.1.0/assets/benchmark/decepticon_donut.png +0 -0
  31. decepticon-1.1.0/assets/benchmark/difficulty.png +0 -0
  32. decepticon-1.1.0/assets/benchmark/leaderboard.png +0 -0
  33. decepticon-1.1.0/assets/cli.png +0 -0
  34. decepticon-1.1.0/assets/decepticon_infra.svg +107 -0
  35. decepticon-1.1.0/assets/demo.gif +0 -0
  36. decepticon-1.1.0/assets/demo.mp4 +0 -0
  37. decepticon-1.1.0/assets/issue1.png +0 -0
  38. decepticon-1.1.0/assets/issue2.png +0 -0
  39. decepticon-1.1.0/assets/issue3.png +0 -0
  40. decepticon-1.1.0/assets/logo_banner.png +0 -0
  41. decepticon-1.1.0/assets/main.png +0 -0
  42. decepticon-1.1.0/benchmark/EXPLOITBENCH-GAINS.md +157 -0
  43. decepticon-1.1.0/benchmark/README-exploitbench.md +117 -0
  44. decepticon-1.1.0/benchmark/README-mhbench.md +324 -0
  45. decepticon-1.1.0/benchmark/README.md +252 -0
  46. decepticon-1.1.0/benchmark/__init__.py +19 -0
  47. decepticon-1.1.0/benchmark/__main__.py +4 -0
  48. decepticon-1.1.0/benchmark/config.py +48 -0
  49. decepticon-1.1.0/benchmark/configs/__init__.py +9 -0
  50. decepticon-1.1.0/benchmark/configs/exploitbench-smoke.yaml +27 -0
  51. decepticon-1.1.0/benchmark/configs/exploitbench-v8-small.yaml +72 -0
  52. decepticon-1.1.0/benchmark/harness.py +966 -0
  53. decepticon-1.1.0/benchmark/providers/__init__.py +5 -0
  54. decepticon-1.1.0/benchmark/providers/base.py +63 -0
  55. decepticon-1.1.0/benchmark/providers/exploitbench.py +795 -0
  56. decepticon-1.1.0/benchmark/providers/exploitbench_capabilities.py +168 -0
  57. decepticon-1.1.0/benchmark/providers/mhbench.py +1339 -0
  58. decepticon-1.1.0/benchmark/providers/xbow.py +277 -0
  59. decepticon-1.1.0/benchmark/reporter.py +233 -0
  60. decepticon-1.1.0/benchmark/results/.gitkeep +0 -0
  61. decepticon-1.1.0/benchmark/results/README.md +180 -0
  62. decepticon-1.1.0/benchmark/results/XBEN-001-24/evidence/summary.json +19 -0
  63. decepticon-1.1.0/benchmark/results/XBEN-001-24/evidence/summary.md +26 -0
  64. decepticon-1.1.0/benchmark/results/XBEN-001-24/report.json +19 -0
  65. decepticon-1.1.0/benchmark/results/XBEN-001-24/report.md +26 -0
  66. decepticon-1.1.0/benchmark/results/XBEN-002-24/evidence/summary.json +19 -0
  67. decepticon-1.1.0/benchmark/results/XBEN-002-24/evidence/summary.md +26 -0
  68. decepticon-1.1.0/benchmark/results/XBEN-002-24/report.json +19 -0
  69. decepticon-1.1.0/benchmark/results/XBEN-002-24/report.md +26 -0
  70. decepticon-1.1.0/benchmark/results/XBEN-003-24/evidence/summary.json +18 -0
  71. decepticon-1.1.0/benchmark/results/XBEN-003-24/evidence/summary.md +9 -0
  72. decepticon-1.1.0/benchmark/results/XBEN-003-24/report.json +18 -0
  73. decepticon-1.1.0/benchmark/results/XBEN-003-24/report.md +9 -0
  74. decepticon-1.1.0/benchmark/results/XBEN-004-24/evidence/summary.json +18 -0
  75. decepticon-1.1.0/benchmark/results/XBEN-004-24/evidence/summary.md +22 -0
  76. decepticon-1.1.0/benchmark/results/XBEN-004-24/report.json +18 -0
  77. decepticon-1.1.0/benchmark/results/XBEN-004-24/report.md +22 -0
  78. decepticon-1.1.0/benchmark/results/XBEN-005-24/evidence/summary.json +16 -0
  79. decepticon-1.1.0/benchmark/results/XBEN-005-24/evidence/summary.md +29 -0
  80. decepticon-1.1.0/benchmark/results/XBEN-005-24/report.json +55 -0
  81. decepticon-1.1.0/benchmark/results/XBEN-005-24/report.md +31 -0
  82. decepticon-1.1.0/benchmark/results/XBEN-006-24/evidence/summary.json +18 -0
  83. decepticon-1.1.0/benchmark/results/XBEN-006-24/evidence/summary.md +15 -0
  84. decepticon-1.1.0/benchmark/results/XBEN-006-24/report.json +18 -0
  85. decepticon-1.1.0/benchmark/results/XBEN-006-24/report.md +15 -0
  86. decepticon-1.1.0/benchmark/results/XBEN-007-24/evidence/summary.json +19 -0
  87. decepticon-1.1.0/benchmark/results/XBEN-007-24/evidence/summary.md +21 -0
  88. decepticon-1.1.0/benchmark/results/XBEN-007-24/report.json +19 -0
  89. decepticon-1.1.0/benchmark/results/XBEN-007-24/report.md +21 -0
  90. decepticon-1.1.0/benchmark/results/XBEN-008-24/evidence/summary.json +17 -0
  91. decepticon-1.1.0/benchmark/results/XBEN-008-24/evidence/summary.md +27 -0
  92. decepticon-1.1.0/benchmark/results/XBEN-008-24/report.json +17 -0
  93. decepticon-1.1.0/benchmark/results/XBEN-008-24/report.md +27 -0
  94. decepticon-1.1.0/benchmark/results/XBEN-009-24/evidence/summary.json +17 -0
  95. decepticon-1.1.0/benchmark/results/XBEN-009-24/evidence/summary.md +15 -0
  96. decepticon-1.1.0/benchmark/results/XBEN-009-24/report.json +17 -0
  97. decepticon-1.1.0/benchmark/results/XBEN-009-24/report.md +15 -0
  98. decepticon-1.1.0/benchmark/results/XBEN-010-24/README.md +26 -0
  99. decepticon-1.1.0/benchmark/results/XBEN-010-24/evidence/summary.json +14 -0
  100. decepticon-1.1.0/benchmark/results/XBEN-010-24/evidence/summary.md +20 -0
  101. decepticon-1.1.0/benchmark/results/XBEN-010-24/report.json +41 -0
  102. decepticon-1.1.0/benchmark/results/XBEN-010-24/report.md +33 -0
  103. decepticon-1.1.0/benchmark/results/XBEN-011-24/evidence/summary.json +18 -0
  104. decepticon-1.1.0/benchmark/results/XBEN-011-24/evidence/summary.md +27 -0
  105. decepticon-1.1.0/benchmark/results/XBEN-011-24/report.json +18 -0
  106. decepticon-1.1.0/benchmark/results/XBEN-011-24/report.md +27 -0
  107. decepticon-1.1.0/benchmark/results/XBEN-012-24/evidence/summary.json +18 -0
  108. decepticon-1.1.0/benchmark/results/XBEN-012-24/evidence/summary.md +30 -0
  109. decepticon-1.1.0/benchmark/results/XBEN-012-24/report.json +18 -0
  110. decepticon-1.1.0/benchmark/results/XBEN-012-24/report.md +30 -0
  111. decepticon-1.1.0/benchmark/results/XBEN-013-24/evidence/summary.json +17 -0
  112. decepticon-1.1.0/benchmark/results/XBEN-013-24/evidence/summary.md +15 -0
  113. decepticon-1.1.0/benchmark/results/XBEN-013-24/report.json +17 -0
  114. decepticon-1.1.0/benchmark/results/XBEN-013-24/report.md +15 -0
  115. decepticon-1.1.0/benchmark/results/XBEN-014-24/evidence/summary.json +18 -0
  116. decepticon-1.1.0/benchmark/results/XBEN-014-24/evidence/summary.md +25 -0
  117. decepticon-1.1.0/benchmark/results/XBEN-014-24/report.json +18 -0
  118. decepticon-1.1.0/benchmark/results/XBEN-014-24/report.md +25 -0
  119. decepticon-1.1.0/benchmark/results/XBEN-015-24/evidence/summary.json +18 -0
  120. decepticon-1.1.0/benchmark/results/XBEN-015-24/evidence/summary.md +20 -0
  121. decepticon-1.1.0/benchmark/results/XBEN-015-24/report.json +18 -0
  122. decepticon-1.1.0/benchmark/results/XBEN-015-24/report.md +20 -0
  123. decepticon-1.1.0/benchmark/results/XBEN-018-24/README.md +27 -0
  124. decepticon-1.1.0/benchmark/results/XBEN-018-24/evidence/summary.json +17 -0
  125. decepticon-1.1.0/benchmark/results/XBEN-018-24/evidence/summary.md +13 -0
  126. decepticon-1.1.0/benchmark/results/XBEN-018-24/report.json +25 -0
  127. decepticon-1.1.0/benchmark/results/XBEN-018-24/report.md +29 -0
  128. decepticon-1.1.0/benchmark/results/XBEN-019-24/evidence/summary.json +18 -0
  129. decepticon-1.1.0/benchmark/results/XBEN-019-24/evidence/summary.md +15 -0
  130. decepticon-1.1.0/benchmark/results/XBEN-019-24/report.json +18 -0
  131. decepticon-1.1.0/benchmark/results/XBEN-019-24/report.md +15 -0
  132. decepticon-1.1.0/benchmark/results/XBEN-020-24/evidence/summary.json +17 -0
  133. decepticon-1.1.0/benchmark/results/XBEN-020-24/evidence/summary.md +15 -0
  134. decepticon-1.1.0/benchmark/results/XBEN-020-24/report.json +17 -0
  135. decepticon-1.1.0/benchmark/results/XBEN-020-24/report.md +15 -0
  136. decepticon-1.1.0/benchmark/results/XBEN-021-24/evidence/summary.json +18 -0
  137. decepticon-1.1.0/benchmark/results/XBEN-021-24/evidence/summary.md +15 -0
  138. decepticon-1.1.0/benchmark/results/XBEN-021-24/report.json +18 -0
  139. decepticon-1.1.0/benchmark/results/XBEN-021-24/report.md +15 -0
  140. decepticon-1.1.0/benchmark/results/XBEN-022-24/evidence/summary.json +20 -0
  141. decepticon-1.1.0/benchmark/results/XBEN-022-24/evidence/summary.md +25 -0
  142. decepticon-1.1.0/benchmark/results/XBEN-022-24/report.json +20 -0
  143. decepticon-1.1.0/benchmark/results/XBEN-022-24/report.md +25 -0
  144. decepticon-1.1.0/benchmark/results/XBEN-023-24/evidence/summary.json +19 -0
  145. decepticon-1.1.0/benchmark/results/XBEN-023-24/evidence/summary.md +24 -0
  146. decepticon-1.1.0/benchmark/results/XBEN-023-24/report.json +19 -0
  147. decepticon-1.1.0/benchmark/results/XBEN-023-24/report.md +24 -0
  148. decepticon-1.1.0/benchmark/results/XBEN-024-24/evidence/summary.json +17 -0
  149. decepticon-1.1.0/benchmark/results/XBEN-024-24/evidence/summary.md +15 -0
  150. decepticon-1.1.0/benchmark/results/XBEN-024-24/report.json +17 -0
  151. decepticon-1.1.0/benchmark/results/XBEN-024-24/report.md +15 -0
  152. decepticon-1.1.0/benchmark/results/XBEN-026-24/evidence/summary.json +19 -0
  153. decepticon-1.1.0/benchmark/results/XBEN-026-24/evidence/summary.md +15 -0
  154. decepticon-1.1.0/benchmark/results/XBEN-026-24/report.json +19 -0
  155. decepticon-1.1.0/benchmark/results/XBEN-026-24/report.md +15 -0
  156. decepticon-1.1.0/benchmark/results/XBEN-027-24/evidence/summary.json +20 -0
  157. decepticon-1.1.0/benchmark/results/XBEN-027-24/evidence/summary.md +26 -0
  158. decepticon-1.1.0/benchmark/results/XBEN-027-24/report.json +20 -0
  159. decepticon-1.1.0/benchmark/results/XBEN-027-24/report.md +26 -0
  160. decepticon-1.1.0/benchmark/results/XBEN-029-24/evidence/summary.json +19 -0
  161. decepticon-1.1.0/benchmark/results/XBEN-029-24/evidence/summary.md +9 -0
  162. decepticon-1.1.0/benchmark/results/XBEN-029-24/report.json +19 -0
  163. decepticon-1.1.0/benchmark/results/XBEN-029-24/report.md +9 -0
  164. decepticon-1.1.0/benchmark/results/XBEN-030-24/evidence/summary.json +20 -0
  165. decepticon-1.1.0/benchmark/results/XBEN-030-24/evidence/summary.md +22 -0
  166. decepticon-1.1.0/benchmark/results/XBEN-030-24/report.json +20 -0
  167. decepticon-1.1.0/benchmark/results/XBEN-030-24/report.md +22 -0
  168. decepticon-1.1.0/benchmark/results/XBEN-031-24/evidence/summary.json +19 -0
  169. decepticon-1.1.0/benchmark/results/XBEN-031-24/evidence/summary.md +15 -0
  170. decepticon-1.1.0/benchmark/results/XBEN-031-24/report.json +19 -0
  171. decepticon-1.1.0/benchmark/results/XBEN-031-24/report.md +15 -0
  172. decepticon-1.1.0/benchmark/results/XBEN-032-24/evidence/summary.json +18 -0
  173. decepticon-1.1.0/benchmark/results/XBEN-032-24/evidence/summary.md +15 -0
  174. decepticon-1.1.0/benchmark/results/XBEN-032-24/report.json +18 -0
  175. decepticon-1.1.0/benchmark/results/XBEN-032-24/report.md +15 -0
  176. decepticon-1.1.0/benchmark/results/XBEN-033-24/evidence/summary.json +18 -0
  177. decepticon-1.1.0/benchmark/results/XBEN-033-24/evidence/summary.md +8 -0
  178. decepticon-1.1.0/benchmark/results/XBEN-033-24/report.json +18 -0
  179. decepticon-1.1.0/benchmark/results/XBEN-033-24/report.md +8 -0
  180. decepticon-1.1.0/benchmark/results/XBEN-034-24/evidence/summary.json +18 -0
  181. decepticon-1.1.0/benchmark/results/XBEN-034-24/evidence/summary.md +9 -0
  182. decepticon-1.1.0/benchmark/results/XBEN-034-24/report.json +18 -0
  183. decepticon-1.1.0/benchmark/results/XBEN-034-24/report.md +9 -0
  184. decepticon-1.1.0/benchmark/results/XBEN-036-24/evidence/summary.json +17 -0
  185. decepticon-1.1.0/benchmark/results/XBEN-036-24/evidence/summary.md +15 -0
  186. decepticon-1.1.0/benchmark/results/XBEN-036-24/report.json +17 -0
  187. decepticon-1.1.0/benchmark/results/XBEN-036-24/report.md +15 -0
  188. decepticon-1.1.0/benchmark/results/XBEN-037-24/evidence/summary.json +17 -0
  189. decepticon-1.1.0/benchmark/results/XBEN-037-24/evidence/summary.md +8 -0
  190. decepticon-1.1.0/benchmark/results/XBEN-037-24/report.json +17 -0
  191. decepticon-1.1.0/benchmark/results/XBEN-037-24/report.md +8 -0
  192. decepticon-1.1.0/benchmark/results/XBEN-038-24/evidence/summary.json +18 -0
  193. decepticon-1.1.0/benchmark/results/XBEN-038-24/evidence/summary.md +15 -0
  194. decepticon-1.1.0/benchmark/results/XBEN-038-24/report.json +18 -0
  195. decepticon-1.1.0/benchmark/results/XBEN-038-24/report.md +15 -0
  196. decepticon-1.1.0/benchmark/results/XBEN-039-24/evidence/summary.json +18 -0
  197. decepticon-1.1.0/benchmark/results/XBEN-039-24/evidence/summary.md +27 -0
  198. decepticon-1.1.0/benchmark/results/XBEN-039-24/report.json +18 -0
  199. decepticon-1.1.0/benchmark/results/XBEN-039-24/report.md +27 -0
  200. decepticon-1.1.0/benchmark/results/XBEN-040-24/evidence/summary.json +18 -0
  201. decepticon-1.1.0/benchmark/results/XBEN-040-24/evidence/summary.md +24 -0
  202. decepticon-1.1.0/benchmark/results/XBEN-040-24/report.json +18 -0
  203. decepticon-1.1.0/benchmark/results/XBEN-040-24/report.md +24 -0
  204. decepticon-1.1.0/benchmark/results/XBEN-041-24/evidence/summary.json +18 -0
  205. decepticon-1.1.0/benchmark/results/XBEN-041-24/evidence/summary.md +25 -0
  206. decepticon-1.1.0/benchmark/results/XBEN-041-24/report.json +18 -0
  207. decepticon-1.1.0/benchmark/results/XBEN-041-24/report.md +25 -0
  208. decepticon-1.1.0/benchmark/results/XBEN-042-24/evidence/summary.json +18 -0
  209. decepticon-1.1.0/benchmark/results/XBEN-042-24/evidence/summary.md +27 -0
  210. decepticon-1.1.0/benchmark/results/XBEN-042-24/report.json +18 -0
  211. decepticon-1.1.0/benchmark/results/XBEN-042-24/report.md +27 -0
  212. decepticon-1.1.0/benchmark/results/XBEN-043-24/evidence/summary.json +19 -0
  213. decepticon-1.1.0/benchmark/results/XBEN-043-24/evidence/summary.md +27 -0
  214. decepticon-1.1.0/benchmark/results/XBEN-043-24/report.json +19 -0
  215. decepticon-1.1.0/benchmark/results/XBEN-043-24/report.md +27 -0
  216. decepticon-1.1.0/benchmark/results/XBEN-044-24/evidence/summary.json +17 -0
  217. decepticon-1.1.0/benchmark/results/XBEN-044-24/evidence/summary.md +26 -0
  218. decepticon-1.1.0/benchmark/results/XBEN-044-24/report.json +17 -0
  219. decepticon-1.1.0/benchmark/results/XBEN-044-24/report.md +26 -0
  220. decepticon-1.1.0/benchmark/results/XBEN-045-24/evidence/summary.json +17 -0
  221. decepticon-1.1.0/benchmark/results/XBEN-045-24/evidence/summary.md +25 -0
  222. decepticon-1.1.0/benchmark/results/XBEN-045-24/report.json +17 -0
  223. decepticon-1.1.0/benchmark/results/XBEN-045-24/report.md +25 -0
  224. decepticon-1.1.0/benchmark/results/XBEN-046-24/evidence/summary.json +18 -0
  225. decepticon-1.1.0/benchmark/results/XBEN-046-24/evidence/summary.md +26 -0
  226. decepticon-1.1.0/benchmark/results/XBEN-046-24/report.json +18 -0
  227. decepticon-1.1.0/benchmark/results/XBEN-046-24/report.md +26 -0
  228. decepticon-1.1.0/benchmark/results/XBEN-047-24/evidence/summary.json +17 -0
  229. decepticon-1.1.0/benchmark/results/XBEN-047-24/evidence/summary.md +21 -0
  230. decepticon-1.1.0/benchmark/results/XBEN-047-24/report.json +17 -0
  231. decepticon-1.1.0/benchmark/results/XBEN-047-24/report.md +21 -0
  232. decepticon-1.1.0/benchmark/results/XBEN-048-24/evidence/summary.json +18 -0
  233. decepticon-1.1.0/benchmark/results/XBEN-048-24/evidence/summary.md +22 -0
  234. decepticon-1.1.0/benchmark/results/XBEN-048-24/report.json +18 -0
  235. decepticon-1.1.0/benchmark/results/XBEN-048-24/report.md +22 -0
  236. decepticon-1.1.0/benchmark/results/XBEN-049-24/evidence/summary.json +18 -0
  237. decepticon-1.1.0/benchmark/results/XBEN-049-24/evidence/summary.md +29 -0
  238. decepticon-1.1.0/benchmark/results/XBEN-049-24/report.json +18 -0
  239. decepticon-1.1.0/benchmark/results/XBEN-049-24/report.md +29 -0
  240. decepticon-1.1.0/benchmark/results/XBEN-050-24/evidence/summary.json +18 -0
  241. decepticon-1.1.0/benchmark/results/XBEN-050-24/evidence/summary.md +28 -0
  242. decepticon-1.1.0/benchmark/results/XBEN-050-24/report.json +18 -0
  243. decepticon-1.1.0/benchmark/results/XBEN-050-24/report.md +28 -0
  244. decepticon-1.1.0/benchmark/results/XBEN-051-24/evidence/summary.json +18 -0
  245. decepticon-1.1.0/benchmark/results/XBEN-051-24/evidence/summary.md +26 -0
  246. decepticon-1.1.0/benchmark/results/XBEN-051-24/report.json +18 -0
  247. decepticon-1.1.0/benchmark/results/XBEN-051-24/report.md +26 -0
  248. decepticon-1.1.0/benchmark/results/XBEN-052-24/evidence/summary.json +18 -0
  249. decepticon-1.1.0/benchmark/results/XBEN-052-24/evidence/summary.md +27 -0
  250. decepticon-1.1.0/benchmark/results/XBEN-052-24/report.json +18 -0
  251. decepticon-1.1.0/benchmark/results/XBEN-052-24/report.md +27 -0
  252. decepticon-1.1.0/benchmark/results/XBEN-053-24/evidence/summary.json +17 -0
  253. decepticon-1.1.0/benchmark/results/XBEN-053-24/evidence/summary.md +27 -0
  254. decepticon-1.1.0/benchmark/results/XBEN-053-24/report.json +17 -0
  255. decepticon-1.1.0/benchmark/results/XBEN-053-24/report.md +27 -0
  256. decepticon-1.1.0/benchmark/results/XBEN-054-24/evidence/summary.json +20 -0
  257. decepticon-1.1.0/benchmark/results/XBEN-054-24/evidence/summary.md +24 -0
  258. decepticon-1.1.0/benchmark/results/XBEN-054-24/report.json +20 -0
  259. decepticon-1.1.0/benchmark/results/XBEN-054-24/report.md +24 -0
  260. decepticon-1.1.0/benchmark/results/XBEN-055-24/evidence/summary.json +19 -0
  261. decepticon-1.1.0/benchmark/results/XBEN-055-24/evidence/summary.md +30 -0
  262. decepticon-1.1.0/benchmark/results/XBEN-055-24/report.json +19 -0
  263. decepticon-1.1.0/benchmark/results/XBEN-055-24/report.md +30 -0
  264. decepticon-1.1.0/benchmark/results/XBEN-056-24/evidence/summary.json +20 -0
  265. decepticon-1.1.0/benchmark/results/XBEN-056-24/evidence/summary.md +28 -0
  266. decepticon-1.1.0/benchmark/results/XBEN-056-24/report.json +20 -0
  267. decepticon-1.1.0/benchmark/results/XBEN-056-24/report.md +28 -0
  268. decepticon-1.1.0/benchmark/results/XBEN-057-24/README.md +27 -0
  269. decepticon-1.1.0/benchmark/results/XBEN-057-24/evidence/summary.json +14 -0
  270. decepticon-1.1.0/benchmark/results/XBEN-057-24/evidence/summary.md +26 -0
  271. decepticon-1.1.0/benchmark/results/XBEN-057-24/report.json +41 -0
  272. decepticon-1.1.0/benchmark/results/XBEN-057-24/report.md +29 -0
  273. decepticon-1.1.0/benchmark/results/XBEN-058-24/evidence/summary.json +17 -0
  274. decepticon-1.1.0/benchmark/results/XBEN-058-24/evidence/summary.md +26 -0
  275. decepticon-1.1.0/benchmark/results/XBEN-058-24/report.json +17 -0
  276. decepticon-1.1.0/benchmark/results/XBEN-058-24/report.md +26 -0
  277. decepticon-1.1.0/benchmark/results/XBEN-059-24/evidence/summary.json +17 -0
  278. decepticon-1.1.0/benchmark/results/XBEN-059-24/evidence/summary.md +28 -0
  279. decepticon-1.1.0/benchmark/results/XBEN-059-24/report.json +17 -0
  280. decepticon-1.1.0/benchmark/results/XBEN-059-24/report.md +28 -0
  281. decepticon-1.1.0/benchmark/results/XBEN-060-24/evidence/summary.json +21 -0
  282. decepticon-1.1.0/benchmark/results/XBEN-060-24/evidence/summary.md +24 -0
  283. decepticon-1.1.0/benchmark/results/XBEN-060-24/report.json +21 -0
  284. decepticon-1.1.0/benchmark/results/XBEN-060-24/report.md +24 -0
  285. decepticon-1.1.0/benchmark/results/XBEN-061-24/evidence/summary.json +17 -0
  286. decepticon-1.1.0/benchmark/results/XBEN-061-24/evidence/summary.md +25 -0
  287. decepticon-1.1.0/benchmark/results/XBEN-061-24/report.json +17 -0
  288. decepticon-1.1.0/benchmark/results/XBEN-061-24/report.md +25 -0
  289. decepticon-1.1.0/benchmark/results/XBEN-062-24/evidence/summary.json +18 -0
  290. decepticon-1.1.0/benchmark/results/XBEN-062-24/evidence/summary.md +8 -0
  291. decepticon-1.1.0/benchmark/results/XBEN-062-24/report.json +18 -0
  292. decepticon-1.1.0/benchmark/results/XBEN-062-24/report.md +8 -0
  293. decepticon-1.1.0/benchmark/results/XBEN-063-24/evidence/summary.json +19 -0
  294. decepticon-1.1.0/benchmark/results/XBEN-063-24/evidence/summary.md +24 -0
  295. decepticon-1.1.0/benchmark/results/XBEN-063-24/report.json +19 -0
  296. decepticon-1.1.0/benchmark/results/XBEN-063-24/report.md +24 -0
  297. decepticon-1.1.0/benchmark/results/XBEN-064-24/evidence/summary.json +17 -0
  298. decepticon-1.1.0/benchmark/results/XBEN-064-24/evidence/summary.md +23 -0
  299. decepticon-1.1.0/benchmark/results/XBEN-064-24/report.json +17 -0
  300. decepticon-1.1.0/benchmark/results/XBEN-064-24/report.md +23 -0
  301. decepticon-1.1.0/benchmark/results/XBEN-065-24/evidence/summary.json +18 -0
  302. decepticon-1.1.0/benchmark/results/XBEN-065-24/evidence/summary.md +8 -0
  303. decepticon-1.1.0/benchmark/results/XBEN-065-24/report.json +18 -0
  304. decepticon-1.1.0/benchmark/results/XBEN-065-24/report.md +8 -0
  305. decepticon-1.1.0/benchmark/results/XBEN-067-24/evidence/summary.json +18 -0
  306. decepticon-1.1.0/benchmark/results/XBEN-067-24/evidence/summary.md +23 -0
  307. decepticon-1.1.0/benchmark/results/XBEN-067-24/report.json +18 -0
  308. decepticon-1.1.0/benchmark/results/XBEN-067-24/report.md +23 -0
  309. decepticon-1.1.0/benchmark/results/XBEN-068-24/evidence/summary.json +18 -0
  310. decepticon-1.1.0/benchmark/results/XBEN-068-24/evidence/summary.md +28 -0
  311. decepticon-1.1.0/benchmark/results/XBEN-068-24/report.json +18 -0
  312. decepticon-1.1.0/benchmark/results/XBEN-068-24/report.md +28 -0
  313. decepticon-1.1.0/benchmark/results/XBEN-069-24/evidence/summary.json +19 -0
  314. decepticon-1.1.0/benchmark/results/XBEN-069-24/evidence/summary.md +24 -0
  315. decepticon-1.1.0/benchmark/results/XBEN-069-24/report.json +19 -0
  316. decepticon-1.1.0/benchmark/results/XBEN-069-24/report.md +24 -0
  317. decepticon-1.1.0/benchmark/results/XBEN-070-24/evidence/summary.json +18 -0
  318. decepticon-1.1.0/benchmark/results/XBEN-070-24/evidence/summary.md +8 -0
  319. decepticon-1.1.0/benchmark/results/XBEN-070-24/report.json +18 -0
  320. decepticon-1.1.0/benchmark/results/XBEN-070-24/report.md +8 -0
  321. decepticon-1.1.0/benchmark/results/XBEN-071-24/evidence/summary.json +18 -0
  322. decepticon-1.1.0/benchmark/results/XBEN-071-24/evidence/summary.md +8 -0
  323. decepticon-1.1.0/benchmark/results/XBEN-071-24/report.json +18 -0
  324. decepticon-1.1.0/benchmark/results/XBEN-071-24/report.md +8 -0
  325. decepticon-1.1.0/benchmark/results/XBEN-072-24/evidence/summary.json +1 -0
  326. decepticon-1.1.0/benchmark/results/XBEN-072-24/evidence/summary.md +4 -0
  327. decepticon-1.1.0/benchmark/results/XBEN-072-24/report.json +1 -0
  328. decepticon-1.1.0/benchmark/results/XBEN-072-24/report.md +14 -0
  329. decepticon-1.1.0/benchmark/results/XBEN-073-24/evidence/summary.json +1 -0
  330. decepticon-1.1.0/benchmark/results/XBEN-073-24/evidence/summary.md +4 -0
  331. decepticon-1.1.0/benchmark/results/XBEN-073-24/report.json +1 -0
  332. decepticon-1.1.0/benchmark/results/XBEN-073-24/report.md +14 -0
  333. decepticon-1.1.0/benchmark/results/XBEN-074-24/evidence/summary.json +18 -0
  334. decepticon-1.1.0/benchmark/results/XBEN-074-24/evidence/summary.md +8 -0
  335. decepticon-1.1.0/benchmark/results/XBEN-074-24/report.json +18 -0
  336. decepticon-1.1.0/benchmark/results/XBEN-074-24/report.md +8 -0
  337. decepticon-1.1.0/benchmark/results/XBEN-075-24/evidence/summary.json +18 -0
  338. decepticon-1.1.0/benchmark/results/XBEN-075-24/evidence/summary.md +28 -0
  339. decepticon-1.1.0/benchmark/results/XBEN-075-24/report.json +18 -0
  340. decepticon-1.1.0/benchmark/results/XBEN-075-24/report.md +28 -0
  341. decepticon-1.1.0/benchmark/results/XBEN-076-24/evidence/summary.json +17 -0
  342. decepticon-1.1.0/benchmark/results/XBEN-076-24/evidence/summary.md +28 -0
  343. decepticon-1.1.0/benchmark/results/XBEN-076-24/report.json +17 -0
  344. decepticon-1.1.0/benchmark/results/XBEN-076-24/report.md +28 -0
  345. decepticon-1.1.0/benchmark/results/XBEN-077-24/evidence/summary.json +18 -0
  346. decepticon-1.1.0/benchmark/results/XBEN-077-24/evidence/summary.md +26 -0
  347. decepticon-1.1.0/benchmark/results/XBEN-077-24/report.json +18 -0
  348. decepticon-1.1.0/benchmark/results/XBEN-077-24/report.md +26 -0
  349. decepticon-1.1.0/benchmark/results/XBEN-078-24/evidence/summary.json +18 -0
  350. decepticon-1.1.0/benchmark/results/XBEN-078-24/evidence/summary.md +27 -0
  351. decepticon-1.1.0/benchmark/results/XBEN-078-24/report.json +18 -0
  352. decepticon-1.1.0/benchmark/results/XBEN-078-24/report.md +27 -0
  353. decepticon-1.1.0/benchmark/results/XBEN-079-24/evidence/summary.json +19 -0
  354. decepticon-1.1.0/benchmark/results/XBEN-079-24/evidence/summary.md +24 -0
  355. decepticon-1.1.0/benchmark/results/XBEN-079-24/report.json +19 -0
  356. decepticon-1.1.0/benchmark/results/XBEN-079-24/report.md +24 -0
  357. decepticon-1.1.0/benchmark/results/XBEN-080-24/evidence/summary.json +18 -0
  358. decepticon-1.1.0/benchmark/results/XBEN-080-24/evidence/summary.md +28 -0
  359. decepticon-1.1.0/benchmark/results/XBEN-080-24/report.json +18 -0
  360. decepticon-1.1.0/benchmark/results/XBEN-080-24/report.md +28 -0
  361. decepticon-1.1.0/benchmark/results/XBEN-081-24/evidence/summary.json +18 -0
  362. decepticon-1.1.0/benchmark/results/XBEN-081-24/evidence/summary.md +22 -0
  363. decepticon-1.1.0/benchmark/results/XBEN-081-24/report.json +18 -0
  364. decepticon-1.1.0/benchmark/results/XBEN-081-24/report.md +22 -0
  365. decepticon-1.1.0/benchmark/results/XBEN-082-24/evidence/summary.json +18 -0
  366. decepticon-1.1.0/benchmark/results/XBEN-082-24/evidence/summary.md +24 -0
  367. decepticon-1.1.0/benchmark/results/XBEN-082-24/report.json +18 -0
  368. decepticon-1.1.0/benchmark/results/XBEN-082-24/report.md +24 -0
  369. decepticon-1.1.0/benchmark/results/XBEN-083-24/evidence/summary.json +17 -0
  370. decepticon-1.1.0/benchmark/results/XBEN-083-24/evidence/summary.md +27 -0
  371. decepticon-1.1.0/benchmark/results/XBEN-083-24/report.json +17 -0
  372. decepticon-1.1.0/benchmark/results/XBEN-083-24/report.md +27 -0
  373. decepticon-1.1.0/benchmark/results/XBEN-084-24/evidence/summary.json +20 -0
  374. decepticon-1.1.0/benchmark/results/XBEN-084-24/evidence/summary.md +24 -0
  375. decepticon-1.1.0/benchmark/results/XBEN-084-24/report.json +20 -0
  376. decepticon-1.1.0/benchmark/results/XBEN-084-24/report.md +24 -0
  377. decepticon-1.1.0/benchmark/results/XBEN-085-24/evidence/summary.json +18 -0
  378. decepticon-1.1.0/benchmark/results/XBEN-085-24/evidence/summary.md +8 -0
  379. decepticon-1.1.0/benchmark/results/XBEN-085-24/report.json +18 -0
  380. decepticon-1.1.0/benchmark/results/XBEN-085-24/report.md +8 -0
  381. decepticon-1.1.0/benchmark/results/XBEN-086-24/evidence/summary.json +18 -0
  382. decepticon-1.1.0/benchmark/results/XBEN-086-24/evidence/summary.md +30 -0
  383. decepticon-1.1.0/benchmark/results/XBEN-086-24/report.json +18 -0
  384. decepticon-1.1.0/benchmark/results/XBEN-086-24/report.md +30 -0
  385. decepticon-1.1.0/benchmark/results/XBEN-087-24/README.md +27 -0
  386. decepticon-1.1.0/benchmark/results/XBEN-087-24/evidence/summary.json +14 -0
  387. decepticon-1.1.0/benchmark/results/XBEN-087-24/evidence/summary.md +22 -0
  388. decepticon-1.1.0/benchmark/results/XBEN-087-24/report.json +41 -0
  389. decepticon-1.1.0/benchmark/results/XBEN-087-24/report.md +29 -0
  390. decepticon-1.1.0/benchmark/results/XBEN-088-24/README.md +27 -0
  391. decepticon-1.1.0/benchmark/results/XBEN-088-24/evidence/summary.json +15 -0
  392. decepticon-1.1.0/benchmark/results/XBEN-088-24/evidence/summary.md +27 -0
  393. decepticon-1.1.0/benchmark/results/XBEN-088-24/report.json +47 -0
  394. decepticon-1.1.0/benchmark/results/XBEN-088-24/report.md +30 -0
  395. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/evidence/summary.json +19 -0
  396. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/evidence/summary.md +9 -0
  397. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/report.json +19 -0
  398. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/report.md +9 -0
  399. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/evidence/summary.json +19 -0
  400. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/evidence/summary.md +15 -0
  401. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/report.json +19 -0
  402. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/report.md +15 -0
  403. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/evidence/summary.json +19 -0
  404. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/evidence/summary.md +9 -0
  405. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/report.json +19 -0
  406. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/report.md +9 -0
  407. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/evidence/summary.json +19 -0
  408. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/evidence/summary.md +17 -0
  409. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/report.json +19 -0
  410. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/report.md +17 -0
  411. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/evidence/summary.json +19 -0
  412. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/evidence/summary.md +9 -0
  413. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/report.json +19 -0
  414. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/report.md +9 -0
  415. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/evidence/summary.json +19 -0
  416. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/evidence/summary.md +9 -0
  417. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/report.json +19 -0
  418. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/report.md +9 -0
  419. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/evidence/summary.json +20 -0
  420. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/evidence/summary.md +9 -0
  421. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/report.json +20 -0
  422. decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/report.md +9 -0
  423. decepticon-1.1.0/benchmark/results/XBEN-090-24/evidence/summary.json +19 -0
  424. decepticon-1.1.0/benchmark/results/XBEN-090-24/evidence/summary.md +28 -0
  425. decepticon-1.1.0/benchmark/results/XBEN-090-24/report.json +19 -0
  426. decepticon-1.1.0/benchmark/results/XBEN-090-24/report.md +28 -0
  427. decepticon-1.1.0/benchmark/results/XBEN-091-24/evidence/summary.json +19 -0
  428. decepticon-1.1.0/benchmark/results/XBEN-091-24/evidence/summary.md +27 -0
  429. decepticon-1.1.0/benchmark/results/XBEN-091-24/report.json +19 -0
  430. decepticon-1.1.0/benchmark/results/XBEN-091-24/report.md +27 -0
  431. decepticon-1.1.0/benchmark/results/XBEN-093-24/README.md +27 -0
  432. decepticon-1.1.0/benchmark/results/XBEN-093-24/evidence/summary.json +14 -0
  433. decepticon-1.1.0/benchmark/results/XBEN-093-24/evidence/summary.md +24 -0
  434. decepticon-1.1.0/benchmark/results/XBEN-093-24/report.json +41 -0
  435. decepticon-1.1.0/benchmark/results/XBEN-093-24/report.md +29 -0
  436. decepticon-1.1.0/benchmark/results/XBEN-094-24/evidence/summary.json +18 -0
  437. decepticon-1.1.0/benchmark/results/XBEN-094-24/evidence/summary.md +24 -0
  438. decepticon-1.1.0/benchmark/results/XBEN-094-24/report.json +18 -0
  439. decepticon-1.1.0/benchmark/results/XBEN-094-24/report.md +24 -0
  440. decepticon-1.1.0/benchmark/results/XBEN-095-24/evidence/summary.json +18 -0
  441. decepticon-1.1.0/benchmark/results/XBEN-095-24/evidence/summary.md +22 -0
  442. decepticon-1.1.0/benchmark/results/XBEN-095-24/report.json +18 -0
  443. decepticon-1.1.0/benchmark/results/XBEN-095-24/report.md +22 -0
  444. decepticon-1.1.0/benchmark/results/XBEN-096-24/evidence/summary.json +17 -0
  445. decepticon-1.1.0/benchmark/results/XBEN-096-24/evidence/summary.md +26 -0
  446. decepticon-1.1.0/benchmark/results/XBEN-096-24/report.json +17 -0
  447. decepticon-1.1.0/benchmark/results/XBEN-096-24/report.md +26 -0
  448. decepticon-1.1.0/benchmark/results/XBEN-097-24/evidence/summary.json +19 -0
  449. decepticon-1.1.0/benchmark/results/XBEN-097-24/evidence/summary.md +28 -0
  450. decepticon-1.1.0/benchmark/results/XBEN-097-24/report.json +19 -0
  451. decepticon-1.1.0/benchmark/results/XBEN-097-24/report.md +28 -0
  452. decepticon-1.1.0/benchmark/results/XBEN-098-24/evidence/summary.json +19 -0
  453. decepticon-1.1.0/benchmark/results/XBEN-098-24/evidence/summary.md +26 -0
  454. decepticon-1.1.0/benchmark/results/XBEN-098-24/report.json +19 -0
  455. decepticon-1.1.0/benchmark/results/XBEN-098-24/report.md +26 -0
  456. decepticon-1.1.0/benchmark/results/XBEN-099-24/evidence/summary.json +19 -0
  457. decepticon-1.1.0/benchmark/results/XBEN-099-24/evidence/summary.md +22 -0
  458. decepticon-1.1.0/benchmark/results/XBEN-099-24/report.json +19 -0
  459. decepticon-1.1.0/benchmark/results/XBEN-099-24/report.md +22 -0
  460. decepticon-1.1.0/benchmark/results/XBEN-100-24/evidence/summary.json +19 -0
  461. decepticon-1.1.0/benchmark/results/XBEN-100-24/evidence/summary.md +20 -0
  462. decepticon-1.1.0/benchmark/results/XBEN-100-24/report.json +19 -0
  463. decepticon-1.1.0/benchmark/results/XBEN-100-24/report.md +20 -0
  464. decepticon-1.1.0/benchmark/results/XBEN-101-24/README.md +27 -0
  465. decepticon-1.1.0/benchmark/results/XBEN-101-24/evidence/summary.json +14 -0
  466. decepticon-1.1.0/benchmark/results/XBEN-101-24/evidence/summary.md +27 -0
  467. decepticon-1.1.0/benchmark/results/XBEN-101-24/report.json +43 -0
  468. decepticon-1.1.0/benchmark/results/XBEN-101-24/report.md +29 -0
  469. decepticon-1.1.0/benchmark/results/XBEN-102-24/evidence/summary.json +18 -0
  470. decepticon-1.1.0/benchmark/results/XBEN-102-24/evidence/summary.md +28 -0
  471. decepticon-1.1.0/benchmark/results/XBEN-102-24/report.json +18 -0
  472. decepticon-1.1.0/benchmark/results/XBEN-102-24/report.md +28 -0
  473. decepticon-1.1.0/benchmark/results/XBEN-103-24/evidence/summary.json +21 -0
  474. decepticon-1.1.0/benchmark/results/XBEN-103-24/evidence/summary.md +28 -0
  475. decepticon-1.1.0/benchmark/results/XBEN-103-24/report.json +21 -0
  476. decepticon-1.1.0/benchmark/results/XBEN-103-24/report.md +28 -0
  477. decepticon-1.1.0/benchmark/results/XBEN-104-24/evidence/summary.json +19 -0
  478. decepticon-1.1.0/benchmark/results/XBEN-104-24/evidence/summary.md +28 -0
  479. decepticon-1.1.0/benchmark/results/XBEN-104-24/report.json +19 -0
  480. decepticon-1.1.0/benchmark/results/XBEN-104-24/report.md +28 -0
  481. decepticon-1.1.0/benchmark/runner.py +239 -0
  482. decepticon-1.1.0/benchmark/schemas.py +193 -0
  483. decepticon-1.1.0/benchmark/scorer.py +63 -0
  484. decepticon-1.1.0/benchmark/state.py +21 -0
  485. decepticon-1.1.0/clients/cli/package.json +38 -0
  486. decepticon-1.1.0/clients/cli/src/app.tsx +16 -0
  487. decepticon-1.1.0/clients/cli/src/commands/agent.ts +153 -0
  488. decepticon-1.1.0/clients/cli/src/commands/assistantOverride.ts +21 -0
  489. decepticon-1.1.0/clients/cli/src/commands/clear.ts +11 -0
  490. decepticon-1.1.0/clients/cli/src/commands/file.ts +54 -0
  491. decepticon-1.1.0/clients/cli/src/commands/help.ts +30 -0
  492. decepticon-1.1.0/clients/cli/src/commands/model.ts +203 -0
  493. decepticon-1.1.0/clients/cli/src/commands/modelOverride.ts +21 -0
  494. decepticon-1.1.0/clients/cli/src/commands/plugins.ts +154 -0
  495. decepticon-1.1.0/clients/cli/src/commands/quit.ts +12 -0
  496. decepticon-1.1.0/clients/cli/src/commands/registry.ts +57 -0
  497. decepticon-1.1.0/clients/cli/src/commands/resume.ts +13 -0
  498. decepticon-1.1.0/clients/cli/src/commands/types.ts +42 -0
  499. decepticon-1.1.0/clients/cli/src/components/ActivityIndicator.tsx +136 -0
  500. decepticon-1.1.0/clients/cli/src/components/Banner.tsx +82 -0
  501. decepticon-1.1.0/clients/cli/src/components/BashResult.tsx +98 -0
  502. decepticon-1.1.0/clients/cli/src/components/EventItem.tsx +66 -0
  503. decepticon-1.1.0/clients/cli/src/components/ObjectiveList.tsx +97 -0
  504. decepticon-1.1.0/clients/cli/src/components/OpplanStatus.tsx +85 -0
  505. decepticon-1.1.0/clients/cli/src/components/Prompt.tsx +240 -0
  506. decepticon-1.1.0/clients/cli/src/components/QuestionPicker.tsx +212 -0
  507. decepticon-1.1.0/clients/cli/src/components/SessionPicker.tsx +139 -0
  508. decepticon-1.1.0/clients/cli/src/components/SpinnerIcon.tsx +15 -0
  509. decepticon-1.1.0/clients/cli/src/components/TodoList.tsx +57 -0
  510. decepticon-1.1.0/clients/cli/src/components/agents/AgentSessionGroup.tsx +233 -0
  511. decepticon-1.1.0/clients/cli/src/components/agents/CoordinatorPanel.tsx +58 -0
  512. decepticon-1.1.0/clients/cli/src/components/messages/AIMessage.tsx +19 -0
  513. decepticon-1.1.0/clients/cli/src/components/messages/BackgroundCompleteMessage.tsx +58 -0
  514. decepticon-1.1.0/clients/cli/src/components/messages/DelegateMessage.tsx +37 -0
  515. decepticon-1.1.0/clients/cli/src/components/messages/DiffResult.tsx +196 -0
  516. decepticon-1.1.0/clients/cli/src/components/messages/ErrorMessage.tsx +38 -0
  517. decepticon-1.1.0/clients/cli/src/components/messages/SystemMessage.tsx +18 -0
  518. decepticon-1.1.0/clients/cli/src/components/messages/ToolCallMessage.tsx +228 -0
  519. decepticon-1.1.0/clients/cli/src/components/messages/ToolGroupSummary.tsx +32 -0
  520. decepticon-1.1.0/clients/cli/src/components/messages/UserMessage.tsx +30 -0
  521. decepticon-1.1.0/clients/cli/src/components/shell/CtrlOToExpand.tsx +29 -0
  522. decepticon-1.1.0/clients/cli/src/components/shell/ExpandOutputContext.tsx +21 -0
  523. decepticon-1.1.0/clients/cli/src/components/shell/ScreenContext.tsx +18 -0
  524. decepticon-1.1.0/clients/cli/src/components/shell/SubAgentContext.tsx +17 -0
  525. decepticon-1.1.0/clients/cli/src/hooks/__fixtures__/mockStream.ts +111 -0
  526. decepticon-1.1.0/clients/cli/src/hooks/useAgent.test.tsx +307 -0
  527. decepticon-1.1.0/clients/cli/src/hooks/useAgent.ts +986 -0
  528. decepticon-1.1.0/clients/cli/src/hooks/useGlobalKeybindings.ts +119 -0
  529. decepticon-1.1.0/clients/cli/src/hooks/useOpplan.ts +125 -0
  530. decepticon-1.1.0/clients/cli/src/hooks/useSpinnerFrame.ts +41 -0
  531. decepticon-1.1.0/clients/cli/src/hooks/useSubAgentSessions.ts +13 -0
  532. decepticon-1.1.0/clients/cli/src/hooks/useTerminalSize.ts +31 -0
  533. decepticon-1.1.0/clients/cli/src/index.tsx +21 -0
  534. decepticon-1.1.0/clients/cli/src/keybindings/shortcuts.ts +38 -0
  535. decepticon-1.1.0/clients/cli/src/screens/REPL.tsx +482 -0
  536. decepticon-1.1.0/clients/cli/src/state/AppState.ts +79 -0
  537. decepticon-1.1.0/clients/cli/src/state/store.ts +36 -0
  538. decepticon-1.1.0/clients/cli/src/types.ts +98 -0
  539. decepticon-1.1.0/clients/cli/src/utils/agents.ts +45 -0
  540. decepticon-1.1.0/clients/cli/src/utils/format.test.ts +91 -0
  541. decepticon-1.1.0/clients/cli/src/utils/format.ts +139 -0
  542. decepticon-1.1.0/clients/cli/src/utils/groupEvents.ts +103 -0
  543. decepticon-1.1.0/clients/cli/src/utils/markdown.ts +23 -0
  544. decepticon-1.1.0/clients/cli/src/utils/marked-terminal.d.ts +14 -0
  545. decepticon-1.1.0/clients/cli/src/utils/theme.ts +61 -0
  546. decepticon-1.1.0/clients/cli/src/utils/threadStore.ts +89 -0
  547. decepticon-1.1.0/clients/cli/src/utils/version.ts +31 -0
  548. decepticon-1.1.0/clients/cli/tsconfig.json +23 -0
  549. decepticon-1.1.0/clients/cli/vitest.config.ts +14 -0
  550. decepticon-1.1.0/clients/launcher/.gitignore +2 -0
  551. decepticon-1.1.0/clients/launcher/.goreleaser.yml +54 -0
  552. decepticon-1.1.0/clients/launcher/cmd/health.go +21 -0
  553. decepticon-1.1.0/clients/launcher/cmd/logs.go +23 -0
  554. decepticon-1.1.0/clients/launcher/cmd/ollama_models.go +149 -0
  555. decepticon-1.1.0/clients/launcher/cmd/ollama_models_test.go +222 -0
  556. decepticon-1.1.0/clients/launcher/cmd/onboard.go +1009 -0
  557. decepticon-1.1.0/clients/launcher/cmd/remove.go +216 -0
  558. decepticon-1.1.0/clients/launcher/cmd/root.go +34 -0
  559. decepticon-1.1.0/clients/launcher/cmd/start.go +315 -0
  560. decepticon-1.1.0/clients/launcher/cmd/start_test.go +105 -0
  561. decepticon-1.1.0/clients/launcher/cmd/status.go +18 -0
  562. decepticon-1.1.0/clients/launcher/cmd/stop.go +29 -0
  563. decepticon-1.1.0/clients/launcher/cmd/update.go +88 -0
  564. decepticon-1.1.0/clients/launcher/go.mod +39 -0
  565. decepticon-1.1.0/clients/launcher/go.sum +82 -0
  566. decepticon-1.1.0/clients/launcher/internal/compose/compose.go +259 -0
  567. decepticon-1.1.0/clients/launcher/internal/compose/compose_test.go +58 -0
  568. decepticon-1.1.0/clients/launcher/internal/config/config.go +593 -0
  569. decepticon-1.1.0/clients/launcher/internal/config/config_test.go +408 -0
  570. decepticon-1.1.0/clients/launcher/internal/config/env.example +239 -0
  571. decepticon-1.1.0/clients/launcher/internal/engagement/picker.go +436 -0
  572. decepticon-1.1.0/clients/launcher/internal/engagement/picker_test.go +191 -0
  573. decepticon-1.1.0/clients/launcher/internal/health/health.go +165 -0
  574. decepticon-1.1.0/clients/launcher/internal/health/health_test.go +97 -0
  575. decepticon-1.1.0/clients/launcher/internal/platform/platform.go +65 -0
  576. decepticon-1.1.0/clients/launcher/internal/platform/platform_test.go +108 -0
  577. decepticon-1.1.0/clients/launcher/internal/starprompt/browser.go +42 -0
  578. decepticon-1.1.0/clients/launcher/internal/starprompt/gh.go +75 -0
  579. decepticon-1.1.0/clients/launcher/internal/starprompt/starprompt.go +177 -0
  580. decepticon-1.1.0/clients/launcher/internal/starprompt/starprompt_test.go +321 -0
  581. decepticon-1.1.0/clients/launcher/internal/ui/theme.go +188 -0
  582. decepticon-1.1.0/clients/launcher/internal/updater/checksums_test.go +90 -0
  583. decepticon-1.1.0/clients/launcher/internal/updater/reexec_unix.go +34 -0
  584. decepticon-1.1.0/clients/launcher/internal/updater/reexec_windows.go +41 -0
  585. decepticon-1.1.0/clients/launcher/internal/updater/updater.go +531 -0
  586. decepticon-1.1.0/clients/launcher/internal/updater/updater_test.go +321 -0
  587. decepticon-1.1.0/clients/launcher/main.go +7 -0
  588. decepticon-1.1.0/clients/shared/streaming/package.json +26 -0
  589. decepticon-1.1.0/clients/shared/streaming/src/constants.ts +13 -0
  590. decepticon-1.1.0/clients/shared/streaming/src/index.ts +23 -0
  591. decepticon-1.1.0/clients/shared/streaming/src/sessions.ts +85 -0
  592. decepticon-1.1.0/clients/shared/streaming/src/types.ts +62 -0
  593. decepticon-1.1.0/clients/shared/streaming/src/utils.ts +32 -0
  594. decepticon-1.1.0/clients/shared/streaming/tsconfig.build.json +11 -0
  595. decepticon-1.1.0/clients/shared/streaming/tsconfig.json +15 -0
  596. decepticon-1.1.0/clients/web/.build-stamp +1 -0
  597. decepticon-1.1.0/clients/web/.env.example +10 -0
  598. decepticon-1.1.0/clients/web/.gitignore +43 -0
  599. decepticon-1.1.0/clients/web/AGENTS.md +5 -0
  600. decepticon-1.1.0/clients/web/LICENSE +191 -0
  601. decepticon-1.1.0/clients/web/README.md +36 -0
  602. decepticon-1.1.0/clients/web/components.json +25 -0
  603. decepticon-1.1.0/clients/web/eslint.config.mjs +33 -0
  604. decepticon-1.1.0/clients/web/next.config.ts +53 -0
  605. decepticon-1.1.0/clients/web/package.json +84 -0
  606. decepticon-1.1.0/clients/web/postcss.config.mjs +7 -0
  607. decepticon-1.1.0/clients/web/prisma/migrations/20260412164158_init/migration.sql +27 -0
  608. decepticon-1.1.0/clients/web/prisma/migrations/migration_lock.toml +3 -0
  609. decepticon-1.1.0/clients/web/prisma/schema.prisma +46 -0
  610. decepticon-1.1.0/clients/web/prisma.config.ts +14 -0
  611. decepticon-1.1.0/clients/web/public/agents/decepticon.png +0 -0
  612. decepticon-1.1.0/clients/web/public/file.svg +1 -0
  613. decepticon-1.1.0/clients/web/public/globe.svg +1 -0
  614. decepticon-1.1.0/clients/web/public/logo.png +0 -0
  615. decepticon-1.1.0/clients/web/public/next.svg +1 -0
  616. decepticon-1.1.0/clients/web/public/vercel.svg +1 -0
  617. decepticon-1.1.0/clients/web/public/window.svg +1 -0
  618. decepticon-1.1.0/clients/web/server/terminal-server.ts +347 -0
  619. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/documents/page.tsx +279 -0
  620. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/findings/page.tsx +303 -0
  621. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/graph/page.tsx +11 -0
  622. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/layout.tsx +96 -0
  623. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/live/page.tsx +63 -0
  624. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/page.tsx +231 -0
  625. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/plan/page.tsx +716 -0
  626. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/timeline/page.tsx +113 -0
  627. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/new/page.tsx +150 -0
  628. decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/page.tsx +162 -0
  629. decepticon-1.1.0/clients/web/src/app/(dashboard)/error.tsx +41 -0
  630. decepticon-1.1.0/clients/web/src/app/(dashboard)/findings/page.tsx +104 -0
  631. decepticon-1.1.0/clients/web/src/app/(dashboard)/graph/page.tsx +80 -0
  632. decepticon-1.1.0/clients/web/src/app/(dashboard)/layout.tsx +20 -0
  633. decepticon-1.1.0/clients/web/src/app/(dashboard)/loading.tsx +10 -0
  634. decepticon-1.1.0/clients/web/src/app/(dashboard)/page.tsx +306 -0
  635. decepticon-1.1.0/clients/web/src/app/(dashboard)/settings/page.tsx +217 -0
  636. decepticon-1.1.0/clients/web/src/app/api/agents/route.ts +60 -0
  637. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/export/route.ts +129 -0
  638. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/findings/route.ts +129 -0
  639. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/graph/route.ts +105 -0
  640. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/opplan/route.ts +41 -0
  641. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/plan-docs/route.ts +47 -0
  642. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/route.ts +104 -0
  643. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/threads/route.ts +73 -0
  644. decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/timeline/route.ts +117 -0
  645. decepticon-1.1.0/clients/web/src/app/api/engagements/route.ts +139 -0
  646. decepticon-1.1.0/clients/web/src/app/api/health/route.ts +70 -0
  647. decepticon-1.1.0/clients/web/src/app/error.tsx +35 -0
  648. decepticon-1.1.0/clients/web/src/app/globals.css +164 -0
  649. decepticon-1.1.0/clients/web/src/app/icon.png +0 -0
  650. decepticon-1.1.0/clients/web/src/app/layout.tsx +40 -0
  651. decepticon-1.1.0/clients/web/src/app/loading.tsx +10 -0
  652. decepticon-1.1.0/clients/web/src/components/agents/agent-avatar.tsx +47 -0
  653. decepticon-1.1.0/clients/web/src/components/agents/agent-card.tsx +67 -0
  654. decepticon-1.1.0/clients/web/src/components/agents/agent-graph-canvas.tsx +323 -0
  655. decepticon-1.1.0/clients/web/src/components/agents/agent-grid.tsx +55 -0
  656. decepticon-1.1.0/clients/web/src/components/agents/agent-node.tsx +158 -0
  657. decepticon-1.1.0/clients/web/src/components/agents/graph-edge.tsx +119 -0
  658. decepticon-1.1.0/clients/web/src/components/agents/index.ts +2 -0
  659. decepticon-1.1.0/clients/web/src/components/agents/session-node.tsx +44 -0
  660. decepticon-1.1.0/clients/web/src/components/chat/streaming-activity.tsx +191 -0
  661. decepticon-1.1.0/clients/web/src/components/graph/attack-graph-canvas.tsx +168 -0
  662. decepticon-1.1.0/clients/web/src/components/graph/graph-node.tsx +58 -0
  663. decepticon-1.1.0/clients/web/src/components/layout/command-palette.tsx +182 -0
  664. decepticon-1.1.0/clients/web/src/components/layout/header.tsx +28 -0
  665. decepticon-1.1.0/clients/web/src/components/layout/sidebar.tsx +256 -0
  666. decepticon-1.1.0/clients/web/src/components/panels/document-panel.tsx +201 -0
  667. decepticon-1.1.0/clients/web/src/components/streaming/agent-detail-panel.tsx +365 -0
  668. decepticon-1.1.0/clients/web/src/components/streaming/live-activity-feed.tsx +428 -0
  669. decepticon-1.1.0/clients/web/src/components/streaming/opplan-live-overlay.tsx +309 -0
  670. decepticon-1.1.0/clients/web/src/components/streaming/opplan-tracker.tsx +176 -0
  671. decepticon-1.1.0/clients/web/src/components/terminal/web-terminal.tsx +423 -0
  672. decepticon-1.1.0/clients/web/src/components/ui/alert.tsx +76 -0
  673. decepticon-1.1.0/clients/web/src/components/ui/avatar.tsx +109 -0
  674. decepticon-1.1.0/clients/web/src/components/ui/badge.tsx +52 -0
  675. decepticon-1.1.0/clients/web/src/components/ui/button.tsx +58 -0
  676. decepticon-1.1.0/clients/web/src/components/ui/card.tsx +103 -0
  677. decepticon-1.1.0/clients/web/src/components/ui/command.tsx +196 -0
  678. decepticon-1.1.0/clients/web/src/components/ui/dialog.tsx +160 -0
  679. decepticon-1.1.0/clients/web/src/components/ui/dropdown-menu.tsx +268 -0
  680. decepticon-1.1.0/clients/web/src/components/ui/input-group.tsx +158 -0
  681. decepticon-1.1.0/clients/web/src/components/ui/input.tsx +20 -0
  682. decepticon-1.1.0/clients/web/src/components/ui/label.tsx +20 -0
  683. decepticon-1.1.0/clients/web/src/components/ui/popover.tsx +90 -0
  684. decepticon-1.1.0/clients/web/src/components/ui/scroll-area.tsx +55 -0
  685. decepticon-1.1.0/clients/web/src/components/ui/select.tsx +201 -0
  686. decepticon-1.1.0/clients/web/src/components/ui/separator.tsx +25 -0
  687. decepticon-1.1.0/clients/web/src/components/ui/sheet.tsx +138 -0
  688. decepticon-1.1.0/clients/web/src/components/ui/skeleton.tsx +13 -0
  689. decepticon-1.1.0/clients/web/src/components/ui/table.tsx +116 -0
  690. decepticon-1.1.0/clients/web/src/components/ui/tabs.tsx +82 -0
  691. decepticon-1.1.0/clients/web/src/components/ui/textarea.tsx +18 -0
  692. decepticon-1.1.0/clients/web/src/components/ui/tooltip.tsx +66 -0
  693. decepticon-1.1.0/clients/web/src/hooks/useAgentActivity.ts +189 -0
  694. decepticon-1.1.0/clients/web/src/hooks/useAgents.ts +54 -0
  695. decepticon-1.1.0/clients/web/src/hooks/useCanvasTransform.ts +169 -0
  696. decepticon-1.1.0/clients/web/src/hooks/useForceSimulation.ts +188 -0
  697. decepticon-1.1.0/clients/web/src/hooks/useRunObserver.ts +185 -0
  698. decepticon-1.1.0/clients/web/src/hooks/useThreadSync.ts +185 -0
  699. decepticon-1.1.0/clients/web/src/lib/agents.ts +225 -0
  700. decepticon-1.1.0/clients/web/src/lib/auth-bridge.ts +30 -0
  701. decepticon-1.1.0/clients/web/src/lib/chat/index.ts +6 -0
  702. decepticon-1.1.0/clients/web/src/lib/chat/markdown-renderer.tsx +35 -0
  703. decepticon-1.1.0/clients/web/src/lib/chat/types.ts +40 -0
  704. decepticon-1.1.0/clients/web/src/lib/engagement-context.tsx +66 -0
  705. decepticon-1.1.0/clients/web/src/lib/graph/types.ts +58 -0
  706. decepticon-1.1.0/clients/web/src/lib/prisma.ts +31 -0
  707. decepticon-1.1.0/clients/web/src/lib/utils.ts +6 -0
  708. decepticon-1.1.0/clients/web/src/styles/canvas-graph.css +184 -0
  709. decepticon-1.1.0/clients/web/tsconfig.json +35 -0
  710. decepticon-1.1.0/config/auth_handler.py +95 -0
  711. decepticon-1.1.0/config/claude4_compat.yaml +36 -0
  712. decepticon-1.1.0/config/claude_code_handler.py +780 -0
  713. decepticon-1.1.0/config/codex_chatgpt_handler.py +568 -0
  714. decepticon-1.1.0/config/copilot_handler.py +414 -0
  715. decepticon-1.1.0/config/gemini_handler.py +316 -0
  716. decepticon-1.1.0/config/grok_handler.py +277 -0
  717. decepticon-1.1.0/config/litellm.yaml +493 -0
  718. decepticon-1.1.0/config/litellm_dynamic_config.py +687 -0
  719. decepticon-1.1.0/config/litellm_startup.py +152 -0
  720. decepticon-1.1.0/config/oauth_token_store.py +337 -0
  721. decepticon-1.1.0/config/ollama_probe.py +234 -0
  722. decepticon-1.1.0/config/perplexity_handler.py +267 -0
  723. decepticon-1.1.0/containers/c2-sliver-entrypoint.sh +49 -0
  724. decepticon-1.1.0/containers/c2-sliver.Dockerfile +53 -0
  725. decepticon-1.1.0/containers/cli.Dockerfile +55 -0
  726. decepticon-1.1.0/containers/langgraph.Dockerfile +48 -0
  727. decepticon-1.1.0/containers/litellm.Dockerfile +16 -0
  728. decepticon-1.1.0/containers/postgres-init/01-create-web-db.sql +11 -0
  729. decepticon-1.1.0/containers/sandbox-entrypoint.sh +20 -0
  730. decepticon-1.1.0/containers/sandbox.Dockerfile +129 -0
  731. decepticon-1.1.0/containers/web-entrypoint.sh +80 -0
  732. decepticon-1.1.0/containers/web.Dockerfile +127 -0
  733. decepticon-1.1.0/decepticon/__init__.py +14 -0
  734. decepticon-1.1.0/decepticon/agents/__init__.py +39 -0
  735. decepticon-1.1.0/decepticon/agents/_benchmark_mode.py +8 -0
  736. decepticon-1.1.0/decepticon/agents/build.py +458 -0
  737. decepticon-1.1.0/decepticon/agents/middleware_slots.py +290 -0
  738. decepticon-1.1.0/decepticon/agents/plugins/__init__.py +12 -0
  739. decepticon-1.1.0/decepticon/agents/plugins/detector.py +199 -0
  740. decepticon-1.1.0/decepticon/agents/plugins/exploiter.py +219 -0
  741. decepticon-1.1.0/decepticon/agents/plugins/patcher.py +192 -0
  742. decepticon-1.1.0/decepticon/agents/plugins/scanner.py +193 -0
  743. decepticon-1.1.0/decepticon/agents/plugins/verifier.py +200 -0
  744. decepticon-1.1.0/decepticon/agents/plugins/vulnresearch.py +202 -0
  745. decepticon-1.1.0/decepticon/agents/prompts/__init__.py +476 -0
  746. decepticon-1.1.0/decepticon/agents/prompts/claude4_compat.py +209 -0
  747. decepticon-1.1.0/decepticon/agents/prompts/language.md +13 -0
  748. decepticon-1.1.0/decepticon/agents/prompts/plugins/detector.md +78 -0
  749. decepticon-1.1.0/decepticon/agents/prompts/plugins/exploiter.md +69 -0
  750. decepticon-1.1.0/decepticon/agents/prompts/plugins/patcher.md +87 -0
  751. decepticon-1.1.0/decepticon/agents/prompts/plugins/scanner.md +75 -0
  752. decepticon-1.1.0/decepticon/agents/prompts/plugins/verifier.md +87 -0
  753. decepticon-1.1.0/decepticon/agents/prompts/plugins/vulnresearch.md +139 -0
  754. decepticon-1.1.0/decepticon/agents/prompts/standard/ad_operator.md +58 -0
  755. decepticon-1.1.0/decepticon/agents/prompts/standard/analyst.md +197 -0
  756. decepticon-1.1.0/decepticon/agents/prompts/standard/cloud_hunter.md +57 -0
  757. decepticon-1.1.0/decepticon/agents/prompts/standard/contract_auditor.md +61 -0
  758. decepticon-1.1.0/decepticon/agents/prompts/standard/decepticon.md +177 -0
  759. decepticon-1.1.0/decepticon/agents/prompts/standard/exploit.md +204 -0
  760. decepticon-1.1.0/decepticon/agents/prompts/standard/postexploit.md +144 -0
  761. decepticon-1.1.0/decepticon/agents/prompts/standard/recon.md +172 -0
  762. decepticon-1.1.0/decepticon/agents/prompts/standard/reverser.md +63 -0
  763. decepticon-1.1.0/decepticon/agents/prompts/standard/soundwave.md +355 -0
  764. decepticon-1.1.0/decepticon/agents/standard/__init__.py +9 -0
  765. decepticon-1.1.0/decepticon/agents/standard/ad_operator.py +186 -0
  766. decepticon-1.1.0/decepticon/agents/standard/analyst.py +182 -0
  767. decepticon-1.1.0/decepticon/agents/standard/cloud_hunter.py +181 -0
  768. decepticon-1.1.0/decepticon/agents/standard/contract_auditor.py +189 -0
  769. decepticon-1.1.0/decepticon/agents/standard/decepticon.py +194 -0
  770. decepticon-1.1.0/decepticon/agents/standard/exploit.py +203 -0
  771. decepticon-1.1.0/decepticon/agents/standard/postexploit.py +199 -0
  772. decepticon-1.1.0/decepticon/agents/standard/recon.py +208 -0
  773. decepticon-1.1.0/decepticon/agents/standard/reverser.py +191 -0
  774. decepticon-1.1.0/decepticon/agents/standard/soundwave.py +145 -0
  775. decepticon-1.1.0/decepticon/backends/__init__.py +52 -0
  776. decepticon-1.1.0/decepticon/backends/factory.py +48 -0
  777. decepticon-1.1.0/decepticon/backends/http_sandbox.py +400 -0
  778. decepticon-1.1.0/decepticon/core/__init__.py +1 -0
  779. decepticon-1.1.0/decepticon/core/config.py +69 -0
  780. decepticon-1.1.0/decepticon/core/logging.py +120 -0
  781. decepticon-1.1.0/decepticon/core/schemas.py +1073 -0
  782. decepticon-1.1.0/decepticon/core/subagent_streaming.py +391 -0
  783. decepticon-1.1.0/decepticon/graph_registry.py +98 -0
  784. decepticon-1.1.0/decepticon/llm/__init__.py +24 -0
  785. decepticon-1.1.0/decepticon/llm/factory.py +983 -0
  786. decepticon-1.1.0/decepticon/llm/models.py +776 -0
  787. decepticon-1.1.0/decepticon/llm/router.py +40 -0
  788. decepticon-1.1.0/decepticon/middleware/__init__.py +17 -0
  789. decepticon-1.1.0/decepticon/middleware/engagement.py +306 -0
  790. decepticon-1.1.0/decepticon/middleware/filesystem.py +232 -0
  791. decepticon-1.1.0/decepticon/middleware/model_override.py +136 -0
  792. decepticon-1.1.0/decepticon/middleware/notifications.py +278 -0
  793. decepticon-1.1.0/decepticon/middleware/opplan.py +442 -0
  794. decepticon-1.1.0/decepticon/middleware/skills.py +328 -0
  795. decepticon-1.1.0/decepticon/plugin_loader.py +559 -0
  796. decepticon-1.1.0/decepticon/sandbox_kernel/__init__.py +59 -0
  797. decepticon-1.1.0/decepticon/sandbox_kernel/base.py +363 -0
  798. decepticon-1.1.0/decepticon/sandbox_kernel/daemon.py +169 -0
  799. decepticon-1.1.0/decepticon/sandbox_kernel/jobs.py +100 -0
  800. decepticon-1.1.0/decepticon/sandbox_kernel/tmux.py +740 -0
  801. decepticon-1.1.0/decepticon/sandbox_server/__init__.py +12 -0
  802. decepticon-1.1.0/decepticon/sandbox_server/__main__.py +31 -0
  803. decepticon-1.1.0/decepticon/sandbox_server/app.py +398 -0
  804. decepticon-1.1.0/decepticon/server/__init__.py +15 -0
  805. decepticon-1.1.0/decepticon/server/plugins_api.py +280 -0
  806. decepticon-1.1.0/decepticon/skills/benchmark/SKILL.md +117 -0
  807. decepticon-1.1.0/decepticon/skills/plugins/detector/SKILL.md +65 -0
  808. decepticon-1.1.0/decepticon/skills/plugins/exploiter/SKILL.md +75 -0
  809. decepticon-1.1.0/decepticon/skills/plugins/patcher/SKILL.md +68 -0
  810. decepticon-1.1.0/decepticon/skills/plugins/scanner/SKILL.md +59 -0
  811. decepticon-1.1.0/decepticon/skills/plugins/verifier/SKILL.md +85 -0
  812. decepticon-1.1.0/decepticon/skills/plugins/verifier/bounty-report/SKILL.md +142 -0
  813. decepticon-1.1.0/decepticon/skills/plugins/vulnresearch/SKILL.md +86 -0
  814. decepticon-1.1.0/decepticon/skills/shared/defense-evasion/SKILL.md +489 -0
  815. decepticon-1.1.0/decepticon/skills/shared/defense-evasion/references/amsi-bypass-techniques.md +103 -0
  816. decepticon-1.1.0/decepticon/skills/shared/finding-protocol/SKILL.md +93 -0
  817. decepticon-1.1.0/decepticon/skills/shared/opsec/SKILL.md +239 -0
  818. decepticon-1.1.0/decepticon/skills/shared/references/SKILL.md +82 -0
  819. decepticon-1.1.0/decepticon/skills/shared/stealth-infra/SKILL.md +334 -0
  820. decepticon-1.1.0/decepticon/skills/standard/ad/SKILL.md +32 -0
  821. decepticon-1.1.0/decepticon/skills/standard/analyst/SKILL.md +45 -0
  822. decepticon-1.1.0/decepticon/skills/standard/analyst/auth-bypass/SKILL.md +22 -0
  823. decepticon-1.1.0/decepticon/skills/standard/analyst/bounty-hunting/SKILL.md +130 -0
  824. decepticon-1.1.0/decepticon/skills/standard/analyst/chains/cred-reuse/SKILL.md +15 -0
  825. decepticon-1.1.0/decepticon/skills/standard/analyst/chains/idor-to-priv-esc/SKILL.md +14 -0
  826. decepticon-1.1.0/decepticon/skills/standard/analyst/chains/ssrf-to-rce/SKILL.md +17 -0
  827. decepticon-1.1.0/decepticon/skills/standard/analyst/chains/xss-to-takeover/SKILL.md +15 -0
  828. decepticon-1.1.0/decepticon/skills/standard/analyst/command-injection/SKILL.md +99 -0
  829. decepticon-1.1.0/decepticon/skills/standard/analyst/deserialization/SKILL.md +145 -0
  830. decepticon-1.1.0/decepticon/skills/standard/analyst/idor/SKILL.md +133 -0
  831. decepticon-1.1.0/decepticon/skills/standard/analyst/path-traversal/SKILL.md +22 -0
  832. decepticon-1.1.0/decepticon/skills/standard/analyst/pattern-exhaustion/SKILL.md +106 -0
  833. decepticon-1.1.0/decepticon/skills/standard/analyst/prompt-injection/SKILL.md +137 -0
  834. decepticon-1.1.0/decepticon/skills/standard/analyst/prototype-pollution/SKILL.md +103 -0
  835. decepticon-1.1.0/decepticon/skills/standard/analyst/sql-injection/SKILL.md +114 -0
  836. decepticon-1.1.0/decepticon/skills/standard/analyst/ssrf/SKILL.md +105 -0
  837. decepticon-1.1.0/decepticon/skills/standard/analyst/ssti/SKILL.md +25 -0
  838. decepticon-1.1.0/decepticon/skills/standard/analyst/trust-boundary/SKILL.md +128 -0
  839. decepticon-1.1.0/decepticon/skills/standard/analyst/xxe/SKILL.md +24 -0
  840. decepticon-1.1.0/decepticon/skills/standard/cloud/SKILL.md +29 -0
  841. decepticon-1.1.0/decepticon/skills/standard/cloud/aws-iam-enum/SKILL.md +65 -0
  842. decepticon-1.1.0/decepticon/skills/standard/contracts/SKILL.md +34 -0
  843. decepticon-1.1.0/decepticon/skills/standard/contracts/reentrancy/SKILL.md +47 -0
  844. decepticon-1.1.0/decepticon/skills/standard/decepticon/engagement-lifecycle/SKILL.md +129 -0
  845. decepticon-1.1.0/decepticon/skills/standard/decepticon/engagement-startup/SKILL.md +86 -0
  846. decepticon-1.1.0/decepticon/skills/standard/decepticon/final-report/SKILL.md +497 -0
  847. decepticon-1.1.0/decepticon/skills/standard/decepticon/kill-chain-analysis/SKILL.md +132 -0
  848. decepticon-1.1.0/decepticon/skills/standard/decepticon/orchestration/SKILL.md +180 -0
  849. decepticon-1.1.0/decepticon/skills/standard/decepticon/workflow.md +100 -0
  850. decepticon-1.1.0/decepticon/skills/standard/exploit/ad/SKILL.md +427 -0
  851. decepticon-1.1.0/decepticon/skills/standard/exploit/ad/references/attack-paths.md +135 -0
  852. decepticon-1.1.0/decepticon/skills/standard/exploit/reporting/SKILL.md +460 -0
  853. decepticon-1.1.0/decepticon/skills/standard/exploit/web/SKILL.md +118 -0
  854. decepticon-1.1.0/decepticon/skills/standard/exploit/web/blind-sqli.md +212 -0
  855. decepticon-1.1.0/decepticon/skills/standard/exploit/web/business-logic.md +144 -0
  856. decepticon-1.1.0/decepticon/skills/standard/exploit/web/command-injection.md +117 -0
  857. decepticon-1.1.0/decepticon/skills/standard/exploit/web/crypto.md +327 -0
  858. decepticon-1.1.0/decepticon/skills/standard/exploit/web/cve.md +194 -0
  859. decepticon-1.1.0/decepticon/skills/standard/exploit/web/deserialization.md +304 -0
  860. decepticon-1.1.0/decepticon/skills/standard/exploit/web/file-upload.md +116 -0
  861. decepticon-1.1.0/decepticon/skills/standard/exploit/web/graphql.md +111 -0
  862. decepticon-1.1.0/decepticon/skills/standard/exploit/web/idor.md +303 -0
  863. decepticon-1.1.0/decepticon/skills/standard/exploit/web/lfi.md +334 -0
  864. decepticon-1.1.0/decepticon/skills/standard/exploit/web/race-condition.md +138 -0
  865. decepticon-1.1.0/decepticon/skills/standard/exploit/web/smuggling.md +655 -0
  866. decepticon-1.1.0/decepticon/skills/standard/exploit/web/sqli.md +262 -0
  867. decepticon-1.1.0/decepticon/skills/standard/exploit/web/ssrf.md +156 -0
  868. decepticon-1.1.0/decepticon/skills/standard/exploit/web/ssti.md +315 -0
  869. decepticon-1.1.0/decepticon/skills/standard/exploit/web/xss.md +301 -0
  870. decepticon-1.1.0/decepticon/skills/standard/exploit/web/xxe.md +144 -0
  871. decepticon-1.1.0/decepticon/skills/standard/exploit/workflow.md +201 -0
  872. decepticon-1.1.0/decepticon/skills/standard/post-exploit/c2/SKILL.md +216 -0
  873. decepticon-1.1.0/decepticon/skills/standard/post-exploit/c2-sliver/SKILL.md +410 -0
  874. decepticon-1.1.0/decepticon/skills/standard/post-exploit/c2-sliver/references/sliver-quickstart.md +148 -0
  875. decepticon-1.1.0/decepticon/skills/standard/post-exploit/credential-access/SKILL.md +377 -0
  876. decepticon-1.1.0/decepticon/skills/standard/post-exploit/credential-access/references/lsass-techniques.md +126 -0
  877. decepticon-1.1.0/decepticon/skills/standard/post-exploit/lateral-movement/SKILL.md +460 -0
  878. decepticon-1.1.0/decepticon/skills/standard/post-exploit/privilege-escalation/SKILL.md +499 -0
  879. decepticon-1.1.0/decepticon/skills/standard/post-exploit/reporting/SKILL.md +548 -0
  880. decepticon-1.1.0/decepticon/skills/standard/post-exploit/workflow.md +82 -0
  881. decepticon-1.1.0/decepticon/skills/standard/recon/active-recon/SKILL.md +399 -0
  882. decepticon-1.1.0/decepticon/skills/standard/recon/cloud-recon/SKILL.md +264 -0
  883. decepticon-1.1.0/decepticon/skills/standard/recon/cloud-recon/references/cloud-ip-ranges.md +111 -0
  884. decepticon-1.1.0/decepticon/skills/standard/recon/cloud-recon/references/cloud-naming-patterns.md +136 -0
  885. decepticon-1.1.0/decepticon/skills/standard/recon/osint/SKILL.md +235 -0
  886. decepticon-1.1.0/decepticon/skills/standard/recon/passive-recon/SKILL.md +311 -0
  887. decepticon-1.1.0/decepticon/skills/standard/recon/passive-recon/references/dns-techniques.md +99 -0
  888. decepticon-1.1.0/decepticon/skills/standard/recon/passive-recon/scripts/parse_subdomains.py +71 -0
  889. decepticon-1.1.0/decepticon/skills/standard/recon/reporting/SKILL.md +492 -0
  890. decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/SKILL.md +69 -0
  891. decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/api-enumeration.md +67 -0
  892. decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/auth-mapping.md +40 -0
  893. decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/cms-scanning.md +39 -0
  894. decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/cookie-audit.md +45 -0
  895. decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/discovery.md +116 -0
  896. decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/waf-detection.md +39 -0
  897. decepticon-1.1.0/decepticon/skills/standard/recon/workflow.md +120 -0
  898. decepticon-1.1.0/decepticon/skills/standard/reverser/SKILL.md +25 -0
  899. decepticon-1.1.0/decepticon/skills/standard/reverser/firmware/SKILL.md +61 -0
  900. decepticon-1.1.0/decepticon/skills/standard/reverser/triage/SKILL.md +47 -0
  901. decepticon-1.1.0/decepticon/skills/standard/soundwave/abort-template/SKILL.md +74 -0
  902. decepticon-1.1.0/decepticon/skills/standard/soundwave/cleanup-template/SKILL.md +72 -0
  903. decepticon-1.1.0/decepticon/skills/standard/soundwave/conops-template/SKILL.md +74 -0
  904. decepticon-1.1.0/decepticon/skills/standard/soundwave/conops-template/references/kill-chain-templates.md +66 -0
  905. decepticon-1.1.0/decepticon/skills/standard/soundwave/contact-template/SKILL.md +82 -0
  906. decepticon-1.1.0/decepticon/skills/standard/soundwave/data-handling-template/SKILL.md +72 -0
  907. decepticon-1.1.0/decepticon/skills/standard/soundwave/opplan-converter/SKILL.md +83 -0
  908. decepticon-1.1.0/decepticon/skills/standard/soundwave/opplan-converter/references/objective-rules.md +107 -0
  909. decepticon-1.1.0/decepticon/skills/standard/soundwave/opplan-converter/references/objective-templates.md +240 -0
  910. decepticon-1.1.0/decepticon/skills/standard/soundwave/references/schema-quick-reference.md +141 -0
  911. decepticon-1.1.0/decepticon/skills/standard/soundwave/roe-template/SKILL.md +62 -0
  912. decepticon-1.1.0/decepticon/skills/standard/soundwave/roe-template/references/roe-example.json +47 -0
  913. decepticon-1.1.0/decepticon/skills/standard/soundwave/roe-template/references/validation-checklist.md +32 -0
  914. decepticon-1.1.0/decepticon/skills/standard/soundwave/structured-questions/SKILL.md +113 -0
  915. decepticon-1.1.0/decepticon/skills/standard/soundwave/threat-profile/SKILL.md +83 -0
  916. decepticon-1.1.0/decepticon/skills/standard/soundwave/threat-profile/references/adversary-archetypes.md +113 -0
  917. decepticon-1.1.0/decepticon/skills/standard/soundwave/threat-profile/references/apt-groups.md +128 -0
  918. decepticon-1.1.0/decepticon/skills/standard/soundwave/workflow.md +96 -0
  919. decepticon-1.1.0/decepticon/tools/__init__.py +35 -0
  920. decepticon-1.1.0/decepticon/tools/ad/__init__.py +30 -0
  921. decepticon-1.1.0/decepticon/tools/ad/adcs.py +196 -0
  922. decepticon-1.1.0/decepticon/tools/ad/bloodhound.py +282 -0
  923. decepticon-1.1.0/decepticon/tools/ad/dcsync.py +37 -0
  924. decepticon-1.1.0/decepticon/tools/ad/kerberos.py +141 -0
  925. decepticon-1.1.0/decepticon/tools/ad/tools.py +93 -0
  926. decepticon-1.1.0/decepticon/tools/bash/__init__.py +18 -0
  927. decepticon-1.1.0/decepticon/tools/bash/bash.py +506 -0
  928. decepticon-1.1.0/decepticon/tools/bash/prompt.py +310 -0
  929. decepticon-1.1.0/decepticon/tools/cloud/__init__.py +44 -0
  930. decepticon-1.1.0/decepticon/tools/cloud/aws.py +240 -0
  931. decepticon-1.1.0/decepticon/tools/cloud/k8s.py +300 -0
  932. decepticon-1.1.0/decepticon/tools/cloud/metadata.py +97 -0
  933. decepticon-1.1.0/decepticon/tools/cloud/terraform.py +151 -0
  934. decepticon-1.1.0/decepticon/tools/cloud/tools.py +91 -0
  935. decepticon-1.1.0/decepticon/tools/contracts/__init__.py +37 -0
  936. decepticon-1.1.0/decepticon/tools/contracts/foundry.py +157 -0
  937. decepticon-1.1.0/decepticon/tools/contracts/patterns.py +235 -0
  938. decepticon-1.1.0/decepticon/tools/contracts/slither.py +128 -0
  939. decepticon-1.1.0/decepticon/tools/contracts/tools.py +98 -0
  940. decepticon-1.1.0/decepticon/tools/filesystem.py +20 -0
  941. decepticon-1.1.0/decepticon/tools/interaction/__init__.py +13 -0
  942. decepticon-1.1.0/decepticon/tools/interaction/ask_user.py +160 -0
  943. decepticon-1.1.0/decepticon/tools/interaction/complete_planning.py +56 -0
  944. decepticon-1.1.0/decepticon/tools/opplan.py +1125 -0
  945. decepticon-1.1.0/decepticon/tools/references/__init__.py +51 -0
  946. decepticon-1.1.0/decepticon/tools/references/catalog.py +386 -0
  947. decepticon-1.1.0/decepticon/tools/references/cve_poc_index.py +322 -0
  948. decepticon-1.1.0/decepticon/tools/references/fetch.py +260 -0
  949. decepticon-1.1.0/decepticon/tools/references/h1_corpus.py +330 -0
  950. decepticon-1.1.0/decepticon/tools/references/hydrate.py +147 -0
  951. decepticon-1.1.0/decepticon/tools/references/killchain.py +329 -0
  952. decepticon-1.1.0/decepticon/tools/references/killchain.yaml +361 -0
  953. decepticon-1.1.0/decepticon/tools/references/methodology.py +196 -0
  954. decepticon-1.1.0/decepticon/tools/references/oneliners.py +198 -0
  955. decepticon-1.1.0/decepticon/tools/references/payloads.py +361 -0
  956. decepticon-1.1.0/decepticon/tools/references/payloads_ingest.py +285 -0
  957. decepticon-1.1.0/decepticon/tools/references/tools.py +439 -0
  958. decepticon-1.1.0/decepticon/tools/reporting/__init__.py +26 -0
  959. decepticon-1.1.0/decepticon/tools/reporting/bugcrowd.py +72 -0
  960. decepticon-1.1.0/decepticon/tools/reporting/executive.py +97 -0
  961. decepticon-1.1.0/decepticon/tools/reporting/hackerone.py +133 -0
  962. decepticon-1.1.0/decepticon/tools/reporting/timeline.py +74 -0
  963. decepticon-1.1.0/decepticon/tools/reporting/tools.py +56 -0
  964. decepticon-1.1.0/decepticon/tools/research/__init__.py +37 -0
  965. decepticon-1.1.0/decepticon/tools/research/_state.py +77 -0
  966. decepticon-1.1.0/decepticon/tools/research/bounty.py +343 -0
  967. decepticon-1.1.0/decepticon/tools/research/chain.py +423 -0
  968. decepticon-1.1.0/decepticon/tools/research/cve.py +469 -0
  969. decepticon-1.1.0/decepticon/tools/research/fuzz.py +357 -0
  970. decepticon-1.1.0/decepticon/tools/research/graph.py +374 -0
  971. decepticon-1.1.0/decepticon/tools/research/health.py +49 -0
  972. decepticon-1.1.0/decepticon/tools/research/neo4j_store.py +633 -0
  973. decepticon-1.1.0/decepticon/tools/research/patch.py +280 -0
  974. decepticon-1.1.0/decepticon/tools/research/poc.py +352 -0
  975. decepticon-1.1.0/decepticon/tools/research/sarif.py +240 -0
  976. decepticon-1.1.0/decepticon/tools/research/scanner_tools.py +570 -0
  977. decepticon-1.1.0/decepticon/tools/research/tools.py +2388 -0
  978. decepticon-1.1.0/decepticon/tools/reversing/__init__.py +38 -0
  979. decepticon-1.1.0/decepticon/tools/reversing/binary.py +214 -0
  980. decepticon-1.1.0/decepticon/tools/reversing/packer.py +100 -0
  981. decepticon-1.1.0/decepticon/tools/reversing/rop.py +75 -0
  982. decepticon-1.1.0/decepticon/tools/reversing/scripts.py +80 -0
  983. decepticon-1.1.0/decepticon/tools/reversing/strings.py +188 -0
  984. decepticon-1.1.0/decepticon/tools/reversing/symbols.py +159 -0
  985. decepticon-1.1.0/decepticon/tools/reversing/tools.py +120 -0
  986. decepticon-1.1.0/decepticon/tools/skills.py +186 -0
  987. decepticon-1.1.0/decepticon/tools/web/__init__.py +40 -0
  988. decepticon-1.1.0/decepticon/tools/web/graphql.py +304 -0
  989. decepticon-1.1.0/decepticon/tools/web/http.py +291 -0
  990. decepticon-1.1.0/decepticon/tools/web/jwt.py +313 -0
  991. decepticon-1.1.0/decepticon/tools/web/oauth.py +248 -0
  992. decepticon-1.1.0/decepticon/tools/web/session.py +205 -0
  993. decepticon-1.1.0/decepticon/tools/web/tools.py +155 -0
  994. decepticon-1.1.0/docker-compose.dev.yml +31 -0
  995. decepticon-1.1.0/docker-compose.watch.yml +51 -0
  996. decepticon-1.1.0/docker-compose.yml +338 -0
  997. decepticon-1.1.0/docs/agents.md +113 -0
  998. decepticon-1.1.0/docs/architecture/context-engineering.md +307 -0
  999. decepticon-1.1.0/docs/architecture/red-team-infrastructure.md +650 -0
  1000. decepticon-1.1.0/docs/architecture.md +164 -0
  1001. decepticon-1.1.0/docs/benchmark-comparison.md +88 -0
  1002. decepticon-1.1.0/docs/cli-reference.md +156 -0
  1003. decepticon-1.1.0/docs/contributing.md +191 -0
  1004. decepticon-1.1.0/docs/design/attack-graph-schema.md +414 -0
  1005. decepticon-1.1.0/docs/design/opplan-middleware.md +694 -0
  1006. decepticon-1.1.0/docs/design/single-bash-and-graphdb.md +61 -0
  1007. decepticon-1.1.0/docs/e2e-testing-guide.md +211 -0
  1008. decepticon-1.1.0/docs/engagement-workflow.md +159 -0
  1009. decepticon-1.1.0/docs/getting-started.md +106 -0
  1010. decepticon-1.1.0/docs/knowledge-graph.md +110 -0
  1011. decepticon-1.1.0/docs/library-usage.md +396 -0
  1012. decepticon-1.1.0/docs/makefile-reference.md +120 -0
  1013. decepticon-1.1.0/docs/models.md +353 -0
  1014. decepticon-1.1.0/docs/offensive-vaccine.md +89 -0
  1015. decepticon-1.1.0/docs/proposals/156-compose-architecture.md +123 -0
  1016. decepticon-1.1.0/docs/pypi-distribution-strategy.md +161 -0
  1017. decepticon-1.1.0/docs/red-team/ai-red-teaming.md +229 -0
  1018. decepticon-1.1.0/docs/red-team/operations.md +280 -0
  1019. decepticon-1.1.0/docs/red-team/opplan-domain-knowledge.md +180 -0
  1020. decepticon-1.1.0/docs/red-team/recon-methodology.md +428 -0
  1021. decepticon-1.1.0/docs/red-team/tools-techniques.md +355 -0
  1022. decepticon-1.1.0/docs/setup-guide.md +922 -0
  1023. decepticon-1.1.0/docs/skills.md +201 -0
  1024. decepticon-1.1.0/docs/superpowers/plans/2026-05-22-pypi-distribution.md +455 -0
  1025. decepticon-1.1.0/docs/superpowers/specs/2026-05-22-pypi-distribution-strategy-design.md +185 -0
  1026. decepticon-1.1.0/docs/web-dashboard.md +101 -0
  1027. decepticon-1.1.0/langgraph.json +21 -0
  1028. decepticon-1.1.0/package-lock.json +14004 -0
  1029. decepticon-1.1.0/package.json +28 -0
  1030. decepticon-1.1.0/pyproject.toml +262 -0
  1031. decepticon-1.1.0/scripts/init-web-db.sql +4 -0
  1032. decepticon-1.1.0/scripts/init_neo4j.cypher +74 -0
  1033. decepticon-1.1.0/scripts/install.sh +474 -0
  1034. decepticon-1.1.0/scripts/render_benchmark_charts.py +292 -0
  1035. decepticon-1.1.0/scripts/web-hotswap.sh +139 -0
  1036. decepticon-1.1.0/tests/__init__.py +0 -0
  1037. decepticon-1.1.0/tests/unit/__init__.py +0 -0
  1038. decepticon-1.1.0/tests/unit/ad/__init__.py +0 -0
  1039. decepticon-1.1.0/tests/unit/ad/test_ad.py +174 -0
  1040. decepticon-1.1.0/tests/unit/agents/__init__.py +0 -0
  1041. decepticon-1.1.0/tests/unit/agents/test_build.py +440 -0
  1042. decepticon-1.1.0/tests/unit/backends/__init__.py +0 -0
  1043. decepticon-1.1.0/tests/unit/backends/test_background_jobs.py +201 -0
  1044. decepticon-1.1.0/tests/unit/backends/test_docker_sandbox_helpers.py +183 -0
  1045. decepticon-1.1.0/tests/unit/backends/test_session_log.py +488 -0
  1046. decepticon-1.1.0/tests/unit/backends/test_skills_path.py +15 -0
  1047. decepticon-1.1.0/tests/unit/benchmark/__init__.py +0 -0
  1048. decepticon-1.1.0/tests/unit/benchmark/test_harness.py +341 -0
  1049. decepticon-1.1.0/tests/unit/benchmark/test_harness_cost.py +115 -0
  1050. decepticon-1.1.0/tests/unit/benchmark/test_schemas.py +155 -0
  1051. decepticon-1.1.0/tests/unit/benchmark/test_scorer.py +155 -0
  1052. decepticon-1.1.0/tests/unit/benchmark/test_xbow_provider.py +172 -0
  1053. decepticon-1.1.0/tests/unit/cloud/__init__.py +0 -0
  1054. decepticon-1.1.0/tests/unit/cloud/test_cloud.py +189 -0
  1055. decepticon-1.1.0/tests/unit/contracts/__init__.py +0 -0
  1056. decepticon-1.1.0/tests/unit/contracts/test_patterns_slither.py +118 -0
  1057. decepticon-1.1.0/tests/unit/core/__init__.py +0 -0
  1058. decepticon-1.1.0/tests/unit/core/test_config.py +25 -0
  1059. decepticon-1.1.0/tests/unit/core/test_logging.py +125 -0
  1060. decepticon-1.1.0/tests/unit/core/test_schemas.py +286 -0
  1061. decepticon-1.1.0/tests/unit/core/test_subagent_streaming.py +275 -0
  1062. decepticon-1.1.0/tests/unit/core/test_workspace_scaffold.py +57 -0
  1063. decepticon-1.1.0/tests/unit/llm/__init__.py +0 -0
  1064. decepticon-1.1.0/tests/unit/llm/test_factory.py +1178 -0
  1065. decepticon-1.1.0/tests/unit/llm/test_litellm_dynamic_config.py +261 -0
  1066. decepticon-1.1.0/tests/unit/llm/test_models.py +514 -0
  1067. decepticon-1.1.0/tests/unit/llm/test_oauth_token_store.py +397 -0
  1068. decepticon-1.1.0/tests/unit/llm/test_ollama_probe.py +340 -0
  1069. decepticon-1.1.0/tests/unit/llm/test_router.py +67 -0
  1070. decepticon-1.1.0/tests/unit/middleware/__init__.py +0 -0
  1071. decepticon-1.1.0/tests/unit/middleware/test_engagement.py +527 -0
  1072. decepticon-1.1.0/tests/unit/middleware/test_filesystem.py +204 -0
  1073. decepticon-1.1.0/tests/unit/middleware/test_model_override.py +280 -0
  1074. decepticon-1.1.0/tests/unit/middleware/test_notifications.py +253 -0
  1075. decepticon-1.1.0/tests/unit/middleware/test_opplan_hierarchy.py +477 -0
  1076. decepticon-1.1.0/tests/unit/middleware/test_opplan_persistence.py +416 -0
  1077. decepticon-1.1.0/tests/unit/middleware/test_skills.py +287 -0
  1078. decepticon-1.1.0/tests/unit/prompts/__init__.py +0 -0
  1079. decepticon-1.1.0/tests/unit/prompts/test_claude4_compat.py +132 -0
  1080. decepticon-1.1.0/tests/unit/references/__init__.py +0 -0
  1081. decepticon-1.1.0/tests/unit/references/test_cve_poc_index.py +123 -0
  1082. decepticon-1.1.0/tests/unit/references/test_h1_corpus.py +114 -0
  1083. decepticon-1.1.0/tests/unit/references/test_hydrate.py +61 -0
  1084. decepticon-1.1.0/tests/unit/references/test_killchain.py +94 -0
  1085. decepticon-1.1.0/tests/unit/references/test_methodology.py +93 -0
  1086. decepticon-1.1.0/tests/unit/references/test_oneliners.py +93 -0
  1087. decepticon-1.1.0/tests/unit/references/test_payloads_ingest.py +125 -0
  1088. decepticon-1.1.0/tests/unit/references/test_references.py +178 -0
  1089. decepticon-1.1.0/tests/unit/references/test_tools_new.py +153 -0
  1090. decepticon-1.1.0/tests/unit/reporting/__init__.py +0 -0
  1091. decepticon-1.1.0/tests/unit/reporting/test_reporting.py +106 -0
  1092. decepticon-1.1.0/tests/unit/research/__init__.py +0 -0
  1093. decepticon-1.1.0/tests/unit/research/test_bounty.py +176 -0
  1094. decepticon-1.1.0/tests/unit/research/test_cve.py +133 -0
  1095. decepticon-1.1.0/tests/unit/research/test_fuzz.py +178 -0
  1096. decepticon-1.1.0/tests/unit/research/test_graph.py +171 -0
  1097. decepticon-1.1.0/tests/unit/research/test_kg_ingest_kali.py +304 -0
  1098. decepticon-1.1.0/tests/unit/research/test_no_neo4j_at_import.py +15 -0
  1099. decepticon-1.1.0/tests/unit/research/test_patch.py +269 -0
  1100. decepticon-1.1.0/tests/unit/research/test_poc.py +173 -0
  1101. decepticon-1.1.0/tests/unit/research/test_sarif.py +145 -0
  1102. decepticon-1.1.0/tests/unit/research/test_scanner_tools.py +266 -0
  1103. decepticon-1.1.0/tests/unit/research/test_state_backend.py +92 -0
  1104. decepticon-1.1.0/tests/unit/research/test_tools.py +362 -0
  1105. decepticon-1.1.0/tests/unit/reversing/__init__.py +0 -0
  1106. decepticon-1.1.0/tests/unit/reversing/test_binary_strings_packer.py +238 -0
  1107. decepticon-1.1.0/tests/unit/schemas/__init__.py +0 -0
  1108. decepticon-1.1.0/tests/unit/test_plugin_loader.py +490 -0
  1109. decepticon-1.1.0/tests/unit/test_wheel_contents.py +35 -0
  1110. decepticon-1.1.0/tests/unit/tools/__init__.py +0 -0
  1111. decepticon-1.1.0/tests/unit/tools/bash/__init__.py +0 -0
  1112. decepticon-1.1.0/tests/unit/tools/bash/test_bash_output.py +156 -0
  1113. decepticon-1.1.0/tests/unit/tools/bash/test_passive_read_stale_guard.py +158 -0
  1114. decepticon-1.1.0/tests/unit/tools/test_ask_user_question.py +270 -0
  1115. decepticon-1.1.0/tests/unit/web/__init__.py +0 -0
  1116. decepticon-1.1.0/tests/unit/web/test_graphql.py +205 -0
  1117. decepticon-1.1.0/tests/unit/web/test_http.py +54 -0
  1118. decepticon-1.1.0/tests/unit/web/test_jwt.py +101 -0
  1119. decepticon-1.1.0/tests/unit/web/test_oauth_session.py +108 -0
  1120. decepticon-1.1.0/uv.lock +2239 -0
@@ -0,0 +1,61 @@
1
+ # ── Build artifacts ──────────────────────────────────────────
2
+ **/node_modules
3
+ **/.next
4
+ **/dist
5
+ **/build
6
+ **/*.tsbuildinfo
7
+
8
+ # ── Version control ──────────────────────────────────────────
9
+ .git
10
+ .gitignore
11
+ .gitattributes
12
+
13
+ # ── IDE / Editor ─────────────────────────────────────────────
14
+ .vscode
15
+ .idea
16
+ *.swp
17
+ *.swo
18
+ .DS_Store
19
+
20
+ # ── Environment / secrets ────────────────────────────────────
21
+ .env
22
+ .env.local
23
+ .env.*.local
24
+ clients/web/.env
25
+ clients/web/.env.*
26
+ *.pem
27
+ *.key
28
+
29
+ # ── Test / coverage ──────────────────────────────────────────
30
+ **/coverage
31
+ **/.pytest_cache
32
+ **/__pycache__
33
+ **/*.pyc
34
+ **/.ruff_cache
35
+ **/.mypy_cache
36
+
37
+ # ── Agent tooling state ─────────────────────────────────────
38
+ **/.omc
39
+ **/.claude
40
+ .claude-flow
41
+
42
+ # ── Logs ─────────────────────────────────────────────────────
43
+ **/*.log
44
+ **/npm-debug.log*
45
+
46
+ # ── Heavy directories not needed by any Dockerfile ──────────
47
+ # (skills/ IS needed by langgraph.Dockerfile — do not exclude)
48
+ reference
49
+ assets
50
+ tests
51
+ workspace
52
+
53
+ # ── Client package caches ───────────────────────────────────
54
+ clients/web/.next
55
+
56
+ # ── Private / EE code — MUST NOT ship in OSS images ─────────
57
+ # The ee/ folder is a private SaaS package linked via `make web-ee`.
58
+ # .gitignore already excludes it from git, but Docker build context
59
+ # scans the working tree directly, so we must exclude it here too.
60
+ clients/ee
61
+ clients/ee/
@@ -0,0 +1,265 @@
1
+ # =============================================================================
2
+ # Decepticon — Environment Variables
3
+ # =============================================================================
4
+ # The installer copies this file to ~/.decepticon/.env
5
+ # Run `decepticon onboard` to (re)configure interactively.
6
+
7
+ # --- LLM API Keys (configure at least one credential below) ---
8
+ # Each entry corresponds to one AuthMethod. The onboard wizard rewrites
9
+ # the keys you select; unselected keys keep their placeholder values and
10
+ # are ignored at runtime.
11
+ ANTHROPIC_API_KEY=your-anthropic-key-here
12
+ OPENAI_API_KEY=your-openai-key-here
13
+ GEMINI_API_KEY=your-gemini-key-here
14
+ MINIMAX_API_KEY=your-minimax-key-here
15
+ OPENROUTER_API_KEY=your-openrouter-key-here
16
+ NVIDIA_API_KEY=your-nvidia-key-here
17
+ DEEPSEEK_API_KEY=your-deepseek-key-here
18
+ XAI_API_KEY=your-xai-key-here
19
+ MISTRAL_API_KEY=your-mistral-key-here
20
+
21
+ # --- Cloud Gateways (added in the OpenClaude provider migration) ---
22
+ # All routed through LiteLLM's native provider implementations. The
23
+ # onboard wizard rewrites only the keys you explicitly select; placeholder
24
+ # values are skipped at credentials-resolution time.
25
+ GROQ_API_KEY=your-groq-key-here
26
+ TOGETHER_API_KEY=your-together-key-here
27
+ FIREWORKS_API_KEY=your-fireworks-key-here
28
+ COHERE_API_KEY=your-cohere-key-here
29
+ MOONSHOT_API_KEY=your-moonshot-key-here
30
+ ZAI_API_KEY=your-zai-key-here
31
+ DASHSCOPE_API_KEY=your-dashscope-key-here
32
+
33
+ # GitHub Models — fine-grained PAT with the 'models' permission scope.
34
+ # Generate at github.com/settings/personal-access-tokens.
35
+ GITHUB_TOKEN=your-github-token-here
36
+
37
+ # --- AWS Bedrock ---
38
+ # IAM access key + secret + region. The region must have your chosen
39
+ # Anthropic models enabled (us-east-1 / us-west-2 are typical).
40
+ # AWS_ACCESS_KEY_ID=AKIA...
41
+ # AWS_SECRET_ACCESS_KEY=...
42
+ # AWS_REGION=us-east-1
43
+
44
+ # --- GCP Vertex AI ---
45
+ # Service-account JSON path + project + region. Download a key from
46
+ # IAM & Admin → Service Accounts. Project + location must match where
47
+ # Anthropic / Gemini models are enabled.
48
+ # GOOGLE_APPLICATION_CREDENTIALS=/abs/path/to/service-account.json
49
+ # VERTEXAI_PROJECT=my-gcp-project-id
50
+ # VERTEXAI_LOCATION=us-central1
51
+
52
+ # --- Azure OpenAI Service ---
53
+ # Deployment endpoint + key + API version. Deployment names default to
54
+ # the model id (gpt-5.5/gpt-5.4/gpt-5-nano); override per role via
55
+ # DECEPTICON_MODEL_<ROLE> if your Azure deployment names differ.
56
+ # AZURE_API_KEY=...
57
+ # AZURE_API_BASE=https://<resource>.openai.azure.com
58
+ # AZURE_API_VERSION=2024-08-01-preview
59
+
60
+ # --- LM Studio (local OpenAI-compatible) ---
61
+ # LM Studio runs a local OpenAI-compatible server on port 1234.
62
+ # Launch the LM Studio app → Developer tab → Start Server.
63
+ # LMSTUDIO_API_BASE=http://host.docker.internal:1234/v1
64
+ # LMSTUDIO_MODEL=qwen2.5-coder-7b-instruct
65
+ # LMSTUDIO_API_KEY=lm-studio # accepts any string; sentinel for the shim
66
+
67
+ # --- llama.cpp (local OpenAI-compatible) ---
68
+ # llama.cpp's `llama-server` exposes an OpenAI-compatible REST API
69
+ # (default http://localhost:8080/v1). Run a GGUF model with:
70
+ # llama-server -m /path/to/model.gguf --port 8080
71
+ # The route prefix is `llamacpp/` and remaps to LiteLLM's openai-
72
+ # compatible path with LLAMACPP_API_BASE. See issue #151.
73
+ # LLAMACPP_API_BASE=http://host.docker.internal:8080/v1
74
+ # LLAMACPP_MODEL=qwen2.5-coder-7b-instruct-q4_k_m
75
+ # LLAMACPP_API_KEY=llama-cpp # accepts any string; sentinel for the shim
76
+
77
+ # --- Custom OpenAI-compatible Endpoint ---
78
+ # Bring-your-own gateway (vLLM, internal LiteLLM, third-party hub, etc.).
79
+ # CUSTOM_OPENAI_API_BASE=https://gateway.example.com/v1
80
+ # CUSTOM_OPENAI_API_KEY=...
81
+ # CUSTOM_OPENAI_MODEL=gpt-4o-mini
82
+
83
+ # --- Local LLM (Ollama) ---
84
+ # Set both to run Decepticon against a local Ollama model. The
85
+ # launcher's onboard wizard writes these when you pick "Local LLM".
86
+ # OLLAMA_MODEL is any tag you pulled (`ollama pull qwen3-coder:30b`);
87
+ # the proxy registers ollama_chat/<model> at startup, routing through
88
+ # Ollama's /api/chat endpoint so tool calling keeps working.
89
+ #
90
+ # OLLAMA_API_BASE points the LiteLLM container at your Ollama server.
91
+ # The right URL depends on where Ollama runs:
92
+ # - macOS / Docker Desktop on Windows / Linux Docker:
93
+ # http://host.docker.internal:11434
94
+ # (the litellm service has extra_hosts: host.docker.internal:host-gateway)
95
+ # - WSL2 with Ollama installed on the Windows host:
96
+ # http://host.docker.internal:11434 (Docker Desktop wires this up)
97
+ # - WSL2 with Ollama installed inside the WSL distro itself:
98
+ # http://localhost:11434
99
+ # (or http://<wsl-ip>:11434 from `ip addr` inside WSL if Docker
100
+ # runs natively in WSL without Docker Desktop)
101
+ # - Remote Ollama on another host:
102
+ # http://<host-or-ip>:11434
103
+ # OLLAMA_API_BASE=http://host.docker.internal:11434
104
+ # OLLAMA_MODEL=qwen3-coder:30b
105
+
106
+ # --- LiteLLM Proxy ---
107
+ LITELLM_MASTER_KEY=sk-decepticon-master
108
+ LITELLM_SALT_KEY=sk-decepticon-salt-change-me
109
+
110
+ # --- PostgreSQL ---
111
+ POSTGRES_PASSWORD=decepticon
112
+
113
+ # --- Neo4j (Attack Chain Graph DB) ---
114
+ # Used when DECEPTICON_KG_BACKEND=neo4j
115
+ NEO4J_PASSWORD=decepticon-graph
116
+
117
+ # --- Model Profile ---
118
+ # eco = per-agent tier (production default)
119
+ # max = every agent on HIGH (high-value targets)
120
+ # test = every agent on LOW (development / CI)
121
+ DECEPTICON_MODEL_PROFILE=eco
122
+
123
+ # --- Auth Method Priority ---
124
+ # Comma-separated list of AuthMethods, ordered by user preference. The
125
+ # first method supplies primary models for every tier; the rest are
126
+ # fallbacks. Methods whose credential isn't configured (placeholder key
127
+ # or DECEPTICON_AUTH_CLAUDE_CODE=false) are skipped at runtime.
128
+ #
129
+ # Valid methods: anthropic_api, anthropic_oauth, openai_api, openai_oauth,
130
+ # google_api, google_oauth, minimax_api, deepseek_api, xai_api,
131
+ # mistral_api, openrouter_api, nvidia_api, copilot_oauth, grok_oauth,
132
+ # perplexity_oauth, bedrock_api, vertex_api, azure_api, groq_api,
133
+ # together_api, fireworks_api, cohere_api, moonshot_api, zai_api,
134
+ # dashscope_api, github_models_api, lmstudio_local, ollama_local,
135
+ # ollama_cloud, custom_openai_api
136
+ # Empty value → factory walks _DEFAULT_AUTH_PRIORITY in priority order,
137
+ # keeping only methods whose credential is actually configured.
138
+ DECEPTICON_AUTH_PRIORITY=
139
+
140
+ # --- Claude Code OAuth (subscription) ---
141
+ # Set true to route Anthropic models through the Claude Code OAuth handler
142
+ # (auth/* in LiteLLM) instead of the x-api-key path. Requires a valid
143
+ # ~/.claude/.credentials.json from `claude` CLI auth.
144
+ DECEPTICON_AUTH_CLAUDE_CODE=false
145
+
146
+ # --- ChatGPT OAuth (subscription) ---
147
+ # Set true to route OpenAI models through the ChatGPT subscription handler
148
+ # (auth/gpt-* in LiteLLM) instead of the API-key path. Requires one of:
149
+ # - CHATGPT_SESSION_TOKEN below (browser cookie), OR
150
+ # - CHATGPT_ACCESS_TOKEN env var (pre-extracted Bearer), OR
151
+ # - ~/.config/chatgpt/tokens.json file
152
+ DECEPTICON_AUTH_CHATGPT=false
153
+
154
+ # Session token from a signed-in chatgpt.com browser session:
155
+ # 1. Open chatgpt.com and sign in
156
+ # 2. DevTools → Application → Cookies → chatgpt.com
157
+ # 3. Copy the value of `__Secure-next-auth.session-token`
158
+ # The onboard wizard prompts for this when ChatGPT OAuth is selected.
159
+ CHATGPT_SESSION_TOKEN=
160
+
161
+ # --- Other OAuth subscriptions (set true + provide one credential each) ---
162
+ # All are selectable from the onboard wizard. Each handler walks the same
163
+ # resolution order at runtime: <X>_ACCESS_TOKEN → <X>_SESSION_TOKEN /
164
+ # _SESSION_COOKIES / _REFRESH_TOKEN → ~/.config/<x>/tokens.json.
165
+
166
+ # Gemini Advanced (Google One AI Premium) — gemini-sub/* models
167
+ # DECEPTICON_AUTH_GEMINI=false
168
+ # GEMINI_SESSION_COOKIES= # NID + __Secure-1PSID + __Secure-1PSIDTS
169
+ # GEMINI_ACCESS_TOKEN= # alternative: pre-extracted Bearer
170
+
171
+ # SuperGrok (X Premium+) — grok-sub/* models
172
+ # DECEPTICON_AUTH_GROK=false
173
+ # GROK_SESSION_TOKEN= # auth_token cookie from grok.com
174
+ # GROK_ACCESS_TOKEN= # alternative: pre-extracted Bearer
175
+
176
+ # GitHub Copilot Pro — copilot/* models
177
+ # DECEPTICON_AUTH_COPILOT=false
178
+ # COPILOT_REFRESH_TOKEN= # ghu_... or ghr_... refresh token
179
+ # COPILOT_ACCESS_TOKEN= # alternative: pre-extracted Bearer
180
+
181
+ # Perplexity Pro — pplx-sub/* models
182
+ # DECEPTICON_AUTH_PERPLEXITY=false
183
+ # PERPLEXITY_SESSION_TOKEN= # next-auth.session-token cookie
184
+ # PERPLEXITY_ACCESS_TOKEN= # alternative: pre-extracted Bearer
185
+
186
+ # --- Benchmark Mode ---
187
+ # Set to 1 to switch the LangGraph orchestrator into BENCHMARK MODE for the
188
+ # XBOW / CTF benchmark harness. Activates Rule-8/9 suspension and accepts
189
+ # challenge context (target_url, vulnerability tags, flag format, mission
190
+ # brief) via state — used by `make benchmark`. Leave empty for normal
191
+ # engagement work. Restart the LangGraph container after toggling.
192
+ BENCHMARK_MODE=
193
+
194
+ # --- LangSmith Tracing (optional) ---
195
+ # Set LANGSMITH_TRACING=true to enable. The wizard rewrites both keys
196
+ # when you opt in.
197
+ LANGSMITH_TRACING=false
198
+ LANGSMITH_API_KEY=your-langsmith-key-here
199
+ LANGSMITH_PROJECT=decepticon
200
+
201
+ # --- Ports (optional) ---
202
+ # Override host-side ports when running multiple Decepticon stacks
203
+ # side by side, or when one of the defaults clashes with another
204
+ # service on your host. Container-internal ports are unchanged.
205
+ # LANGGRAPH_PORT=2024
206
+ # LITELLM_PORT=4000
207
+ # POSTGRES_PORT=5432
208
+ # WEB_PORT=3000
209
+ # TERMINAL_PORT=3003
210
+ # NEO4J_HTTP_PORT=7474
211
+ # NEO4J_BOLT_PORT=7687
212
+
213
+ # --- C2 Framework ---
214
+ # Default C2 server profile. Change to swap C2 frameworks.
215
+ # Options: c2-sliver (default), c2-havoc (future)
216
+ COMPOSE_PROFILES=c2-sliver
217
+
218
+ # --- Paths ---
219
+ # Install directory (used for workspace bind mount into containers).
220
+ # - Production: The installer sets this to ~/.decepticon automatically.
221
+ # - Development: `decepticon` (Python entry point) sets this to the repo root automatically.
222
+ # Do not use ~ (tilde) — Docker Compose cannot expand it.
223
+ # DECEPTICON_HOME=/home/youruser/.decepticon
224
+
225
+ # --- Advanced (optional) ---
226
+ # Disable automatic self-update checks on startup
227
+ # AUTO_UPDATE=false
228
+ # DECEPTICON_DEBUG=true
229
+
230
+ # Multi-stack container naming (PR #216). Unset/empty keeps the default
231
+ # `decepticon-*` names. Set to e.g. `stack2` to get `decepticon-stack2-*`
232
+ # so two stacks can coexist on the same Docker host. The declaration here
233
+ # (even when blank) silences the compose "variable is not set" WARN.
234
+ DECEPTICON_STACK_NAME=
235
+
236
+ # --- Language ---
237
+ # Pin agent output language to an ISO 639-1 code. All agent prose output
238
+ # (menus, questions, summaries, errors) renders in this language.
239
+ # Default: en (English). Presets:
240
+ #
241
+ # en English no Norwegian da Danish
242
+ # sv Swedish fi Finnish is Icelandic
243
+ # ko Korean ja Japanese zh Chinese
244
+ # zh-cn Simplified Chinese zh-tw Traditional Chinese
245
+ # es Spanish pt Portuguese pt-br Brazilian Portuguese
246
+ # de German fr French nl Dutch
247
+ # it Italian ca Catalan el Greek
248
+ # pl Polish cs Czech sk Slovak
249
+ # uk Ukrainian ro Romanian hr Croatian
250
+ # bg Bulgarian sr Serbian sl Slovenian
251
+ # hu Hungarian ru Russian et Estonian
252
+ # lv Latvian lt Lithuanian
253
+ # tr Turkish ar Arabic fa Persian
254
+ # he Hebrew hi Hindi bn Bengali
255
+ # ta Tamil te Telugu th Thai
256
+ # vi Vietnamese id Indonesian ms Malay
257
+ # tl Filipino sw Swahili af Afrikaans
258
+ #
259
+ # Country-code aliases (auto-resolved):
260
+ # dk → Danish se → Swedish jp → Japanese cn → Chinese
261
+ # br → Brazilian Portuguese tw → Traditional Chinese
262
+ #
263
+ # Special:
264
+ # wenyan 文言文 Classical Chinese prose + English technical terms
265
+ DECEPTICON_LANGUAGE=en
decepticon-1.1.0/.git ADDED
@@ -0,0 +1 @@
1
+ gitdir: /home/catow/GIT/decepticon_new/.git/worktrees/pypi-strategy
@@ -0,0 +1,5 @@
1
+ # Code owners for the Decepticon repository.
2
+ # Every PR to main requires approval from the listed owner(s).
3
+ # Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-security/customizing-your-repository/about-code-owners
4
+
5
+ * @PurpleCHOIms
@@ -0,0 +1 @@
1
+ github: PurpleCHOIms
@@ -0,0 +1,70 @@
1
+ name: Bug Report
2
+ description: Report a bug in Decepticon
3
+ labels: ["bug"]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ Thanks for taking the time to report a bug! Please fill out the sections below.
9
+
10
+ - type: textarea
11
+ id: description
12
+ attributes:
13
+ label: Description
14
+ description: A clear description of what the bug is.
15
+ validations:
16
+ required: true
17
+
18
+ - type: textarea
19
+ id: steps
20
+ attributes:
21
+ label: Steps to Reproduce
22
+ description: Steps to reproduce the behavior.
23
+ placeholder: |
24
+ 1. Run `decepticon ...`
25
+ 2. Start an engagement with ...
26
+ 3. See error ...
27
+ validations:
28
+ required: true
29
+
30
+ - type: textarea
31
+ id: expected
32
+ attributes:
33
+ label: Expected Behavior
34
+ description: What you expected to happen.
35
+ validations:
36
+ required: true
37
+
38
+ - type: textarea
39
+ id: actual
40
+ attributes:
41
+ label: Actual Behavior
42
+ description: What actually happened. Include error messages or logs if available.
43
+ validations:
44
+ required: true
45
+
46
+ - type: textarea
47
+ id: environment
48
+ attributes:
49
+ label: Environment
50
+ description: Version and platform information.
51
+ placeholder: |
52
+ - Decepticon version: (run `decepticon --version`)
53
+ - OS: (e.g., Ubuntu 24.04, macOS 15, Windows 11 + WSL2)
54
+ - Docker version: (run `docker --version`)
55
+ - Installation method: (curl installer / git clone)
56
+ validations:
57
+ required: true
58
+
59
+ - type: textarea
60
+ id: logs
61
+ attributes:
62
+ label: Logs
63
+ description: Relevant log output (run `decepticon logs` or `make logs`).
64
+ render: shell
65
+
66
+ - type: textarea
67
+ id: additional
68
+ attributes:
69
+ label: Additional Context
70
+ description: Any other context, screenshots, or configuration details.
@@ -0,0 +1,53 @@
1
+ name: Feature Request
2
+ description: Suggest a new feature or improvement
3
+ labels: ["enhancement"]
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ We appreciate feature suggestions! Please describe what you'd like to see.
9
+
10
+ - type: textarea
11
+ id: problem
12
+ attributes:
13
+ label: Problem Statement
14
+ description: What problem does this feature solve? Is it related to a frustration?
15
+ validations:
16
+ required: true
17
+
18
+ - type: textarea
19
+ id: solution
20
+ attributes:
21
+ label: Proposed Solution
22
+ description: Describe the solution you'd like.
23
+ validations:
24
+ required: true
25
+
26
+ - type: textarea
27
+ id: alternatives
28
+ attributes:
29
+ label: Alternatives Considered
30
+ description: Any alternative solutions or features you've considered.
31
+
32
+ - type: dropdown
33
+ id: area
34
+ attributes:
35
+ label: Area
36
+ description: Which part of Decepticon does this relate to?
37
+ options:
38
+ - Agent (recon/exploit/post-exploit)
39
+ - CLI (terminal UI)
40
+ - Orchestrator (Decepticon/Ralph loop)
41
+ - Skills (knowledge base)
42
+ - Docker / Infrastructure
43
+ - Installer / Setup
44
+ - Documentation
45
+ - Other
46
+ validations:
47
+ required: true
48
+
49
+ - type: textarea
50
+ id: additional
51
+ attributes:
52
+ label: Additional Context
53
+ description: Any other context, mockups, or references.
@@ -0,0 +1,21 @@
1
+ ## Summary
2
+
3
+ <!-- Brief description of what this PR does and why. -->
4
+
5
+ ## Changes
6
+
7
+ <!-- Bullet list of key changes. -->
8
+
9
+ -
10
+
11
+ ## Testing
12
+
13
+ <!-- How were these changes tested? -->
14
+
15
+ - [ ] `make quality` passes (Python + CLI + Web)
16
+ - [ ] `make smoke` succeeds (clean local build + OSS-style up + health checks)
17
+ - [ ] Manual testing (describe below)
18
+
19
+ ## Related Issues
20
+
21
+ <!-- Link related issues: Fixes #123, Closes #456 -->