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.
- decepticon-1.1.0/.dockerignore +61 -0
- decepticon-1.1.0/.env.example +265 -0
- decepticon-1.1.0/.git +1 -0
- decepticon-1.1.0/.github/CODEOWNERS +5 -0
- decepticon-1.1.0/.github/FUNDING.yml +1 -0
- decepticon-1.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +70 -0
- decepticon-1.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +53 -0
- decepticon-1.1.0/.github/pull_request_template.md +21 -0
- decepticon-1.1.0/.github/workflows/ci.yml +359 -0
- decepticon-1.1.0/.github/workflows/codeql.yml +32 -0
- decepticon-1.1.0/.github/workflows/release-recover.yml +83 -0
- decepticon-1.1.0/.github/workflows/release.yml +640 -0
- decepticon-1.1.0/.gitignore +117 -0
- decepticon-1.1.0/.gitmodules +7 -0
- decepticon-1.1.0/.omc/state/agent-replay-07e9b2a4-260a-43da-88bd-366331608629.jsonl +3 -0
- decepticon-1.1.0/.omc/state/hud-stdin-cache.json +1 -0
- decepticon-1.1.0/.omc/state/last-tool-error.json +7 -0
- decepticon-1.1.0/.omc/state/sessions/07e9b2a4-260a-43da-88bd-366331608629/hud-state.json +6 -0
- decepticon-1.1.0/.pre-commit-config.yaml +40 -0
- decepticon-1.1.0/.python-version +1 -0
- decepticon-1.1.0/CODE_OF_CONDUCT.md +52 -0
- decepticon-1.1.0/CONTRIBUTING.md +89 -0
- decepticon-1.1.0/LICENSE +201 -0
- decepticon-1.1.0/Makefile +292 -0
- decepticon-1.1.0/PKG-INFO +247 -0
- decepticon-1.1.0/README.md +204 -0
- decepticon-1.1.0/README_KO.md +202 -0
- decepticon-1.1.0/SECURITY.md +45 -0
- decepticon-1.1.0/assets/benchmark/coverage.png +0 -0
- decepticon-1.1.0/assets/benchmark/decepticon_donut.png +0 -0
- decepticon-1.1.0/assets/benchmark/difficulty.png +0 -0
- decepticon-1.1.0/assets/benchmark/leaderboard.png +0 -0
- decepticon-1.1.0/assets/cli.png +0 -0
- decepticon-1.1.0/assets/decepticon_infra.svg +107 -0
- decepticon-1.1.0/assets/demo.gif +0 -0
- decepticon-1.1.0/assets/demo.mp4 +0 -0
- decepticon-1.1.0/assets/issue1.png +0 -0
- decepticon-1.1.0/assets/issue2.png +0 -0
- decepticon-1.1.0/assets/issue3.png +0 -0
- decepticon-1.1.0/assets/logo_banner.png +0 -0
- decepticon-1.1.0/assets/main.png +0 -0
- decepticon-1.1.0/benchmark/EXPLOITBENCH-GAINS.md +157 -0
- decepticon-1.1.0/benchmark/README-exploitbench.md +117 -0
- decepticon-1.1.0/benchmark/README-mhbench.md +324 -0
- decepticon-1.1.0/benchmark/README.md +252 -0
- decepticon-1.1.0/benchmark/__init__.py +19 -0
- decepticon-1.1.0/benchmark/__main__.py +4 -0
- decepticon-1.1.0/benchmark/config.py +48 -0
- decepticon-1.1.0/benchmark/configs/__init__.py +9 -0
- decepticon-1.1.0/benchmark/configs/exploitbench-smoke.yaml +27 -0
- decepticon-1.1.0/benchmark/configs/exploitbench-v8-small.yaml +72 -0
- decepticon-1.1.0/benchmark/harness.py +966 -0
- decepticon-1.1.0/benchmark/providers/__init__.py +5 -0
- decepticon-1.1.0/benchmark/providers/base.py +63 -0
- decepticon-1.1.0/benchmark/providers/exploitbench.py +795 -0
- decepticon-1.1.0/benchmark/providers/exploitbench_capabilities.py +168 -0
- decepticon-1.1.0/benchmark/providers/mhbench.py +1339 -0
- decepticon-1.1.0/benchmark/providers/xbow.py +277 -0
- decepticon-1.1.0/benchmark/reporter.py +233 -0
- decepticon-1.1.0/benchmark/results/.gitkeep +0 -0
- decepticon-1.1.0/benchmark/results/README.md +180 -0
- decepticon-1.1.0/benchmark/results/XBEN-001-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-001-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-001-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-001-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-002-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-002-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-002-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-002-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-003-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-003-24/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-003-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-003-24/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-004-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-004-24/evidence/summary.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-004-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-004-24/report.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-005-24/evidence/summary.json +16 -0
- decepticon-1.1.0/benchmark/results/XBEN-005-24/evidence/summary.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-005-24/report.json +55 -0
- decepticon-1.1.0/benchmark/results/XBEN-005-24/report.md +31 -0
- decepticon-1.1.0/benchmark/results/XBEN-006-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-006-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-006-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-006-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-007-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-007-24/evidence/summary.md +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-007-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-007-24/report.md +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-008-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-008-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-008-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-008-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-009-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-009-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-009-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-009-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-010-24/README.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-010-24/evidence/summary.json +14 -0
- decepticon-1.1.0/benchmark/results/XBEN-010-24/evidence/summary.md +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-010-24/report.json +41 -0
- decepticon-1.1.0/benchmark/results/XBEN-010-24/report.md +33 -0
- decepticon-1.1.0/benchmark/results/XBEN-011-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-011-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-011-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-011-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-012-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-012-24/evidence/summary.md +30 -0
- decepticon-1.1.0/benchmark/results/XBEN-012-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-012-24/report.md +30 -0
- decepticon-1.1.0/benchmark/results/XBEN-013-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-013-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-013-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-013-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-014-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-014-24/evidence/summary.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-014-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-014-24/report.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-015-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-015-24/evidence/summary.md +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-015-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-015-24/report.md +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-018-24/README.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-018-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-018-24/evidence/summary.md +13 -0
- decepticon-1.1.0/benchmark/results/XBEN-018-24/report.json +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-018-24/report.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-019-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-019-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-019-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-019-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-020-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-020-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-020-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-020-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-021-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-021-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-021-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-021-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-022-24/evidence/summary.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-022-24/evidence/summary.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-022-24/report.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-022-24/report.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-023-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-023-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-023-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-023-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-024-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-024-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-024-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-024-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-026-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-026-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-026-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-026-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-027-24/evidence/summary.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-027-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-027-24/report.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-027-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-029-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-029-24/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-029-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-029-24/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-030-24/evidence/summary.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-030-24/evidence/summary.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-030-24/report.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-030-24/report.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-031-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-031-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-031-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-031-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-032-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-032-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-032-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-032-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-033-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-033-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-033-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-033-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-034-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-034-24/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-034-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-034-24/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-036-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-036-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-036-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-036-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-037-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-037-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-037-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-037-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-038-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-038-24/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-038-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-038-24/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-039-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-039-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-039-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-039-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-040-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-040-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-040-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-040-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-041-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-041-24/evidence/summary.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-041-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-041-24/report.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-042-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-042-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-042-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-042-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-043-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-043-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-043-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-043-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-044-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-044-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-044-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-044-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-045-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-045-24/evidence/summary.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-045-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-045-24/report.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-046-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-046-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-046-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-046-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-047-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-047-24/evidence/summary.md +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-047-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-047-24/report.md +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-048-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-048-24/evidence/summary.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-048-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-048-24/report.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-049-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-049-24/evidence/summary.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-049-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-049-24/report.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-050-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-050-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-050-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-050-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-051-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-051-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-051-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-051-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-052-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-052-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-052-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-052-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-053-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-053-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-053-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-053-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-054-24/evidence/summary.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-054-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-054-24/report.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-054-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-055-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-055-24/evidence/summary.md +30 -0
- decepticon-1.1.0/benchmark/results/XBEN-055-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-055-24/report.md +30 -0
- decepticon-1.1.0/benchmark/results/XBEN-056-24/evidence/summary.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-056-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-056-24/report.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-056-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-057-24/README.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-057-24/evidence/summary.json +14 -0
- decepticon-1.1.0/benchmark/results/XBEN-057-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-057-24/report.json +41 -0
- decepticon-1.1.0/benchmark/results/XBEN-057-24/report.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-058-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-058-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-058-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-058-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-059-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-059-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-059-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-059-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-060-24/evidence/summary.json +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-060-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-060-24/report.json +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-060-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-061-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-061-24/evidence/summary.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-061-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-061-24/report.md +25 -0
- decepticon-1.1.0/benchmark/results/XBEN-062-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-062-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-062-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-062-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-063-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-063-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-063-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-063-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-064-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-064-24/evidence/summary.md +23 -0
- decepticon-1.1.0/benchmark/results/XBEN-064-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-064-24/report.md +23 -0
- decepticon-1.1.0/benchmark/results/XBEN-065-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-065-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-065-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-065-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-067-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-067-24/evidence/summary.md +23 -0
- decepticon-1.1.0/benchmark/results/XBEN-067-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-067-24/report.md +23 -0
- decepticon-1.1.0/benchmark/results/XBEN-068-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-068-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-068-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-068-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-069-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-069-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-069-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-069-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-070-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-070-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-070-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-070-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-071-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-071-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-071-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-071-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-072-24/evidence/summary.json +1 -0
- decepticon-1.1.0/benchmark/results/XBEN-072-24/evidence/summary.md +4 -0
- decepticon-1.1.0/benchmark/results/XBEN-072-24/report.json +1 -0
- decepticon-1.1.0/benchmark/results/XBEN-072-24/report.md +14 -0
- decepticon-1.1.0/benchmark/results/XBEN-073-24/evidence/summary.json +1 -0
- decepticon-1.1.0/benchmark/results/XBEN-073-24/evidence/summary.md +4 -0
- decepticon-1.1.0/benchmark/results/XBEN-073-24/report.json +1 -0
- decepticon-1.1.0/benchmark/results/XBEN-073-24/report.md +14 -0
- decepticon-1.1.0/benchmark/results/XBEN-074-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-074-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-074-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-074-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-075-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-075-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-075-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-075-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-076-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-076-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-076-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-076-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-077-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-077-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-077-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-077-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-078-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-078-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-078-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-078-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-079-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-079-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-079-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-079-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-080-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-080-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-080-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-080-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-081-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-081-24/evidence/summary.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-081-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-081-24/report.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-082-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-082-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-082-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-082-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-083-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-083-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-083-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-083-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-084-24/evidence/summary.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-084-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-084-24/report.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-084-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-085-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-085-24/evidence/summary.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-085-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-085-24/report.md +8 -0
- decepticon-1.1.0/benchmark/results/XBEN-086-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-086-24/evidence/summary.md +30 -0
- decepticon-1.1.0/benchmark/results/XBEN-086-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-086-24/report.md +30 -0
- decepticon-1.1.0/benchmark/results/XBEN-087-24/README.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-087-24/evidence/summary.json +14 -0
- decepticon-1.1.0/benchmark/results/XBEN-087-24/evidence/summary.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-087-24/report.json +41 -0
- decepticon-1.1.0/benchmark/results/XBEN-087-24/report.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-088-24/README.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-088-24/evidence/summary.json +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-088-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-088-24/report.json +47 -0
- decepticon-1.1.0/benchmark/results/XBEN-088-24/report.md +30 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260507_210559/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/evidence/summary.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_072010/report.md +15 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_104939/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/evidence/summary.md +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260508_113357/report.md +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260513_223349/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_011010/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/evidence/summary.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/evidence/summary.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/report.json +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-089-24/20260514_124828/report.md +9 -0
- decepticon-1.1.0/benchmark/results/XBEN-090-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-090-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-090-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-090-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-091-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-091-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-091-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-091-24/report.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-093-24/README.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-093-24/evidence/summary.json +14 -0
- decepticon-1.1.0/benchmark/results/XBEN-093-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-093-24/report.json +41 -0
- decepticon-1.1.0/benchmark/results/XBEN-093-24/report.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-094-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-094-24/evidence/summary.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-094-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-094-24/report.md +24 -0
- decepticon-1.1.0/benchmark/results/XBEN-095-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-095-24/evidence/summary.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-095-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-095-24/report.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-096-24/evidence/summary.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-096-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-096-24/report.json +17 -0
- decepticon-1.1.0/benchmark/results/XBEN-096-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-097-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-097-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-097-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-097-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-098-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-098-24/evidence/summary.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-098-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-098-24/report.md +26 -0
- decepticon-1.1.0/benchmark/results/XBEN-099-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-099-24/evidence/summary.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-099-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-099-24/report.md +22 -0
- decepticon-1.1.0/benchmark/results/XBEN-100-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-100-24/evidence/summary.md +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-100-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-100-24/report.md +20 -0
- decepticon-1.1.0/benchmark/results/XBEN-101-24/README.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-101-24/evidence/summary.json +14 -0
- decepticon-1.1.0/benchmark/results/XBEN-101-24/evidence/summary.md +27 -0
- decepticon-1.1.0/benchmark/results/XBEN-101-24/report.json +43 -0
- decepticon-1.1.0/benchmark/results/XBEN-101-24/report.md +29 -0
- decepticon-1.1.0/benchmark/results/XBEN-102-24/evidence/summary.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-102-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-102-24/report.json +18 -0
- decepticon-1.1.0/benchmark/results/XBEN-102-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-103-24/evidence/summary.json +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-103-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-103-24/report.json +21 -0
- decepticon-1.1.0/benchmark/results/XBEN-103-24/report.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-104-24/evidence/summary.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-104-24/evidence/summary.md +28 -0
- decepticon-1.1.0/benchmark/results/XBEN-104-24/report.json +19 -0
- decepticon-1.1.0/benchmark/results/XBEN-104-24/report.md +28 -0
- decepticon-1.1.0/benchmark/runner.py +239 -0
- decepticon-1.1.0/benchmark/schemas.py +193 -0
- decepticon-1.1.0/benchmark/scorer.py +63 -0
- decepticon-1.1.0/benchmark/state.py +21 -0
- decepticon-1.1.0/clients/cli/package.json +38 -0
- decepticon-1.1.0/clients/cli/src/app.tsx +16 -0
- decepticon-1.1.0/clients/cli/src/commands/agent.ts +153 -0
- decepticon-1.1.0/clients/cli/src/commands/assistantOverride.ts +21 -0
- decepticon-1.1.0/clients/cli/src/commands/clear.ts +11 -0
- decepticon-1.1.0/clients/cli/src/commands/file.ts +54 -0
- decepticon-1.1.0/clients/cli/src/commands/help.ts +30 -0
- decepticon-1.1.0/clients/cli/src/commands/model.ts +203 -0
- decepticon-1.1.0/clients/cli/src/commands/modelOverride.ts +21 -0
- decepticon-1.1.0/clients/cli/src/commands/plugins.ts +154 -0
- decepticon-1.1.0/clients/cli/src/commands/quit.ts +12 -0
- decepticon-1.1.0/clients/cli/src/commands/registry.ts +57 -0
- decepticon-1.1.0/clients/cli/src/commands/resume.ts +13 -0
- decepticon-1.1.0/clients/cli/src/commands/types.ts +42 -0
- decepticon-1.1.0/clients/cli/src/components/ActivityIndicator.tsx +136 -0
- decepticon-1.1.0/clients/cli/src/components/Banner.tsx +82 -0
- decepticon-1.1.0/clients/cli/src/components/BashResult.tsx +98 -0
- decepticon-1.1.0/clients/cli/src/components/EventItem.tsx +66 -0
- decepticon-1.1.0/clients/cli/src/components/ObjectiveList.tsx +97 -0
- decepticon-1.1.0/clients/cli/src/components/OpplanStatus.tsx +85 -0
- decepticon-1.1.0/clients/cli/src/components/Prompt.tsx +240 -0
- decepticon-1.1.0/clients/cli/src/components/QuestionPicker.tsx +212 -0
- decepticon-1.1.0/clients/cli/src/components/SessionPicker.tsx +139 -0
- decepticon-1.1.0/clients/cli/src/components/SpinnerIcon.tsx +15 -0
- decepticon-1.1.0/clients/cli/src/components/TodoList.tsx +57 -0
- decepticon-1.1.0/clients/cli/src/components/agents/AgentSessionGroup.tsx +233 -0
- decepticon-1.1.0/clients/cli/src/components/agents/CoordinatorPanel.tsx +58 -0
- decepticon-1.1.0/clients/cli/src/components/messages/AIMessage.tsx +19 -0
- decepticon-1.1.0/clients/cli/src/components/messages/BackgroundCompleteMessage.tsx +58 -0
- decepticon-1.1.0/clients/cli/src/components/messages/DelegateMessage.tsx +37 -0
- decepticon-1.1.0/clients/cli/src/components/messages/DiffResult.tsx +196 -0
- decepticon-1.1.0/clients/cli/src/components/messages/ErrorMessage.tsx +38 -0
- decepticon-1.1.0/clients/cli/src/components/messages/SystemMessage.tsx +18 -0
- decepticon-1.1.0/clients/cli/src/components/messages/ToolCallMessage.tsx +228 -0
- decepticon-1.1.0/clients/cli/src/components/messages/ToolGroupSummary.tsx +32 -0
- decepticon-1.1.0/clients/cli/src/components/messages/UserMessage.tsx +30 -0
- decepticon-1.1.0/clients/cli/src/components/shell/CtrlOToExpand.tsx +29 -0
- decepticon-1.1.0/clients/cli/src/components/shell/ExpandOutputContext.tsx +21 -0
- decepticon-1.1.0/clients/cli/src/components/shell/ScreenContext.tsx +18 -0
- decepticon-1.1.0/clients/cli/src/components/shell/SubAgentContext.tsx +17 -0
- decepticon-1.1.0/clients/cli/src/hooks/__fixtures__/mockStream.ts +111 -0
- decepticon-1.1.0/clients/cli/src/hooks/useAgent.test.tsx +307 -0
- decepticon-1.1.0/clients/cli/src/hooks/useAgent.ts +986 -0
- decepticon-1.1.0/clients/cli/src/hooks/useGlobalKeybindings.ts +119 -0
- decepticon-1.1.0/clients/cli/src/hooks/useOpplan.ts +125 -0
- decepticon-1.1.0/clients/cli/src/hooks/useSpinnerFrame.ts +41 -0
- decepticon-1.1.0/clients/cli/src/hooks/useSubAgentSessions.ts +13 -0
- decepticon-1.1.0/clients/cli/src/hooks/useTerminalSize.ts +31 -0
- decepticon-1.1.0/clients/cli/src/index.tsx +21 -0
- decepticon-1.1.0/clients/cli/src/keybindings/shortcuts.ts +38 -0
- decepticon-1.1.0/clients/cli/src/screens/REPL.tsx +482 -0
- decepticon-1.1.0/clients/cli/src/state/AppState.ts +79 -0
- decepticon-1.1.0/clients/cli/src/state/store.ts +36 -0
- decepticon-1.1.0/clients/cli/src/types.ts +98 -0
- decepticon-1.1.0/clients/cli/src/utils/agents.ts +45 -0
- decepticon-1.1.0/clients/cli/src/utils/format.test.ts +91 -0
- decepticon-1.1.0/clients/cli/src/utils/format.ts +139 -0
- decepticon-1.1.0/clients/cli/src/utils/groupEvents.ts +103 -0
- decepticon-1.1.0/clients/cli/src/utils/markdown.ts +23 -0
- decepticon-1.1.0/clients/cli/src/utils/marked-terminal.d.ts +14 -0
- decepticon-1.1.0/clients/cli/src/utils/theme.ts +61 -0
- decepticon-1.1.0/clients/cli/src/utils/threadStore.ts +89 -0
- decepticon-1.1.0/clients/cli/src/utils/version.ts +31 -0
- decepticon-1.1.0/clients/cli/tsconfig.json +23 -0
- decepticon-1.1.0/clients/cli/vitest.config.ts +14 -0
- decepticon-1.1.0/clients/launcher/.gitignore +2 -0
- decepticon-1.1.0/clients/launcher/.goreleaser.yml +54 -0
- decepticon-1.1.0/clients/launcher/cmd/health.go +21 -0
- decepticon-1.1.0/clients/launcher/cmd/logs.go +23 -0
- decepticon-1.1.0/clients/launcher/cmd/ollama_models.go +149 -0
- decepticon-1.1.0/clients/launcher/cmd/ollama_models_test.go +222 -0
- decepticon-1.1.0/clients/launcher/cmd/onboard.go +1009 -0
- decepticon-1.1.0/clients/launcher/cmd/remove.go +216 -0
- decepticon-1.1.0/clients/launcher/cmd/root.go +34 -0
- decepticon-1.1.0/clients/launcher/cmd/start.go +315 -0
- decepticon-1.1.0/clients/launcher/cmd/start_test.go +105 -0
- decepticon-1.1.0/clients/launcher/cmd/status.go +18 -0
- decepticon-1.1.0/clients/launcher/cmd/stop.go +29 -0
- decepticon-1.1.0/clients/launcher/cmd/update.go +88 -0
- decepticon-1.1.0/clients/launcher/go.mod +39 -0
- decepticon-1.1.0/clients/launcher/go.sum +82 -0
- decepticon-1.1.0/clients/launcher/internal/compose/compose.go +259 -0
- decepticon-1.1.0/clients/launcher/internal/compose/compose_test.go +58 -0
- decepticon-1.1.0/clients/launcher/internal/config/config.go +593 -0
- decepticon-1.1.0/clients/launcher/internal/config/config_test.go +408 -0
- decepticon-1.1.0/clients/launcher/internal/config/env.example +239 -0
- decepticon-1.1.0/clients/launcher/internal/engagement/picker.go +436 -0
- decepticon-1.1.0/clients/launcher/internal/engagement/picker_test.go +191 -0
- decepticon-1.1.0/clients/launcher/internal/health/health.go +165 -0
- decepticon-1.1.0/clients/launcher/internal/health/health_test.go +97 -0
- decepticon-1.1.0/clients/launcher/internal/platform/platform.go +65 -0
- decepticon-1.1.0/clients/launcher/internal/platform/platform_test.go +108 -0
- decepticon-1.1.0/clients/launcher/internal/starprompt/browser.go +42 -0
- decepticon-1.1.0/clients/launcher/internal/starprompt/gh.go +75 -0
- decepticon-1.1.0/clients/launcher/internal/starprompt/starprompt.go +177 -0
- decepticon-1.1.0/clients/launcher/internal/starprompt/starprompt_test.go +321 -0
- decepticon-1.1.0/clients/launcher/internal/ui/theme.go +188 -0
- decepticon-1.1.0/clients/launcher/internal/updater/checksums_test.go +90 -0
- decepticon-1.1.0/clients/launcher/internal/updater/reexec_unix.go +34 -0
- decepticon-1.1.0/clients/launcher/internal/updater/reexec_windows.go +41 -0
- decepticon-1.1.0/clients/launcher/internal/updater/updater.go +531 -0
- decepticon-1.1.0/clients/launcher/internal/updater/updater_test.go +321 -0
- decepticon-1.1.0/clients/launcher/main.go +7 -0
- decepticon-1.1.0/clients/shared/streaming/package.json +26 -0
- decepticon-1.1.0/clients/shared/streaming/src/constants.ts +13 -0
- decepticon-1.1.0/clients/shared/streaming/src/index.ts +23 -0
- decepticon-1.1.0/clients/shared/streaming/src/sessions.ts +85 -0
- decepticon-1.1.0/clients/shared/streaming/src/types.ts +62 -0
- decepticon-1.1.0/clients/shared/streaming/src/utils.ts +32 -0
- decepticon-1.1.0/clients/shared/streaming/tsconfig.build.json +11 -0
- decepticon-1.1.0/clients/shared/streaming/tsconfig.json +15 -0
- decepticon-1.1.0/clients/web/.build-stamp +1 -0
- decepticon-1.1.0/clients/web/.env.example +10 -0
- decepticon-1.1.0/clients/web/.gitignore +43 -0
- decepticon-1.1.0/clients/web/AGENTS.md +5 -0
- decepticon-1.1.0/clients/web/LICENSE +191 -0
- decepticon-1.1.0/clients/web/README.md +36 -0
- decepticon-1.1.0/clients/web/components.json +25 -0
- decepticon-1.1.0/clients/web/eslint.config.mjs +33 -0
- decepticon-1.1.0/clients/web/next.config.ts +53 -0
- decepticon-1.1.0/clients/web/package.json +84 -0
- decepticon-1.1.0/clients/web/postcss.config.mjs +7 -0
- decepticon-1.1.0/clients/web/prisma/migrations/20260412164158_init/migration.sql +27 -0
- decepticon-1.1.0/clients/web/prisma/migrations/migration_lock.toml +3 -0
- decepticon-1.1.0/clients/web/prisma/schema.prisma +46 -0
- decepticon-1.1.0/clients/web/prisma.config.ts +14 -0
- decepticon-1.1.0/clients/web/public/agents/decepticon.png +0 -0
- decepticon-1.1.0/clients/web/public/file.svg +1 -0
- decepticon-1.1.0/clients/web/public/globe.svg +1 -0
- decepticon-1.1.0/clients/web/public/logo.png +0 -0
- decepticon-1.1.0/clients/web/public/next.svg +1 -0
- decepticon-1.1.0/clients/web/public/vercel.svg +1 -0
- decepticon-1.1.0/clients/web/public/window.svg +1 -0
- decepticon-1.1.0/clients/web/server/terminal-server.ts +347 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/documents/page.tsx +279 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/findings/page.tsx +303 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/graph/page.tsx +11 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/layout.tsx +96 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/live/page.tsx +63 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/page.tsx +231 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/plan/page.tsx +716 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/[id]/timeline/page.tsx +113 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/new/page.tsx +150 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/engagements/page.tsx +162 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/error.tsx +41 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/findings/page.tsx +104 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/graph/page.tsx +80 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/layout.tsx +20 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/loading.tsx +10 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/page.tsx +306 -0
- decepticon-1.1.0/clients/web/src/app/(dashboard)/settings/page.tsx +217 -0
- decepticon-1.1.0/clients/web/src/app/api/agents/route.ts +60 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/export/route.ts +129 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/findings/route.ts +129 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/graph/route.ts +105 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/opplan/route.ts +41 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/plan-docs/route.ts +47 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/route.ts +104 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/threads/route.ts +73 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/[id]/timeline/route.ts +117 -0
- decepticon-1.1.0/clients/web/src/app/api/engagements/route.ts +139 -0
- decepticon-1.1.0/clients/web/src/app/api/health/route.ts +70 -0
- decepticon-1.1.0/clients/web/src/app/error.tsx +35 -0
- decepticon-1.1.0/clients/web/src/app/globals.css +164 -0
- decepticon-1.1.0/clients/web/src/app/icon.png +0 -0
- decepticon-1.1.0/clients/web/src/app/layout.tsx +40 -0
- decepticon-1.1.0/clients/web/src/app/loading.tsx +10 -0
- decepticon-1.1.0/clients/web/src/components/agents/agent-avatar.tsx +47 -0
- decepticon-1.1.0/clients/web/src/components/agents/agent-card.tsx +67 -0
- decepticon-1.1.0/clients/web/src/components/agents/agent-graph-canvas.tsx +323 -0
- decepticon-1.1.0/clients/web/src/components/agents/agent-grid.tsx +55 -0
- decepticon-1.1.0/clients/web/src/components/agents/agent-node.tsx +158 -0
- decepticon-1.1.0/clients/web/src/components/agents/graph-edge.tsx +119 -0
- decepticon-1.1.0/clients/web/src/components/agents/index.ts +2 -0
- decepticon-1.1.0/clients/web/src/components/agents/session-node.tsx +44 -0
- decepticon-1.1.0/clients/web/src/components/chat/streaming-activity.tsx +191 -0
- decepticon-1.1.0/clients/web/src/components/graph/attack-graph-canvas.tsx +168 -0
- decepticon-1.1.0/clients/web/src/components/graph/graph-node.tsx +58 -0
- decepticon-1.1.0/clients/web/src/components/layout/command-palette.tsx +182 -0
- decepticon-1.1.0/clients/web/src/components/layout/header.tsx +28 -0
- decepticon-1.1.0/clients/web/src/components/layout/sidebar.tsx +256 -0
- decepticon-1.1.0/clients/web/src/components/panels/document-panel.tsx +201 -0
- decepticon-1.1.0/clients/web/src/components/streaming/agent-detail-panel.tsx +365 -0
- decepticon-1.1.0/clients/web/src/components/streaming/live-activity-feed.tsx +428 -0
- decepticon-1.1.0/clients/web/src/components/streaming/opplan-live-overlay.tsx +309 -0
- decepticon-1.1.0/clients/web/src/components/streaming/opplan-tracker.tsx +176 -0
- decepticon-1.1.0/clients/web/src/components/terminal/web-terminal.tsx +423 -0
- decepticon-1.1.0/clients/web/src/components/ui/alert.tsx +76 -0
- decepticon-1.1.0/clients/web/src/components/ui/avatar.tsx +109 -0
- decepticon-1.1.0/clients/web/src/components/ui/badge.tsx +52 -0
- decepticon-1.1.0/clients/web/src/components/ui/button.tsx +58 -0
- decepticon-1.1.0/clients/web/src/components/ui/card.tsx +103 -0
- decepticon-1.1.0/clients/web/src/components/ui/command.tsx +196 -0
- decepticon-1.1.0/clients/web/src/components/ui/dialog.tsx +160 -0
- decepticon-1.1.0/clients/web/src/components/ui/dropdown-menu.tsx +268 -0
- decepticon-1.1.0/clients/web/src/components/ui/input-group.tsx +158 -0
- decepticon-1.1.0/clients/web/src/components/ui/input.tsx +20 -0
- decepticon-1.1.0/clients/web/src/components/ui/label.tsx +20 -0
- decepticon-1.1.0/clients/web/src/components/ui/popover.tsx +90 -0
- decepticon-1.1.0/clients/web/src/components/ui/scroll-area.tsx +55 -0
- decepticon-1.1.0/clients/web/src/components/ui/select.tsx +201 -0
- decepticon-1.1.0/clients/web/src/components/ui/separator.tsx +25 -0
- decepticon-1.1.0/clients/web/src/components/ui/sheet.tsx +138 -0
- decepticon-1.1.0/clients/web/src/components/ui/skeleton.tsx +13 -0
- decepticon-1.1.0/clients/web/src/components/ui/table.tsx +116 -0
- decepticon-1.1.0/clients/web/src/components/ui/tabs.tsx +82 -0
- decepticon-1.1.0/clients/web/src/components/ui/textarea.tsx +18 -0
- decepticon-1.1.0/clients/web/src/components/ui/tooltip.tsx +66 -0
- decepticon-1.1.0/clients/web/src/hooks/useAgentActivity.ts +189 -0
- decepticon-1.1.0/clients/web/src/hooks/useAgents.ts +54 -0
- decepticon-1.1.0/clients/web/src/hooks/useCanvasTransform.ts +169 -0
- decepticon-1.1.0/clients/web/src/hooks/useForceSimulation.ts +188 -0
- decepticon-1.1.0/clients/web/src/hooks/useRunObserver.ts +185 -0
- decepticon-1.1.0/clients/web/src/hooks/useThreadSync.ts +185 -0
- decepticon-1.1.0/clients/web/src/lib/agents.ts +225 -0
- decepticon-1.1.0/clients/web/src/lib/auth-bridge.ts +30 -0
- decepticon-1.1.0/clients/web/src/lib/chat/index.ts +6 -0
- decepticon-1.1.0/clients/web/src/lib/chat/markdown-renderer.tsx +35 -0
- decepticon-1.1.0/clients/web/src/lib/chat/types.ts +40 -0
- decepticon-1.1.0/clients/web/src/lib/engagement-context.tsx +66 -0
- decepticon-1.1.0/clients/web/src/lib/graph/types.ts +58 -0
- decepticon-1.1.0/clients/web/src/lib/prisma.ts +31 -0
- decepticon-1.1.0/clients/web/src/lib/utils.ts +6 -0
- decepticon-1.1.0/clients/web/src/styles/canvas-graph.css +184 -0
- decepticon-1.1.0/clients/web/tsconfig.json +35 -0
- decepticon-1.1.0/config/auth_handler.py +95 -0
- decepticon-1.1.0/config/claude4_compat.yaml +36 -0
- decepticon-1.1.0/config/claude_code_handler.py +780 -0
- decepticon-1.1.0/config/codex_chatgpt_handler.py +568 -0
- decepticon-1.1.0/config/copilot_handler.py +414 -0
- decepticon-1.1.0/config/gemini_handler.py +316 -0
- decepticon-1.1.0/config/grok_handler.py +277 -0
- decepticon-1.1.0/config/litellm.yaml +493 -0
- decepticon-1.1.0/config/litellm_dynamic_config.py +687 -0
- decepticon-1.1.0/config/litellm_startup.py +152 -0
- decepticon-1.1.0/config/oauth_token_store.py +337 -0
- decepticon-1.1.0/config/ollama_probe.py +234 -0
- decepticon-1.1.0/config/perplexity_handler.py +267 -0
- decepticon-1.1.0/containers/c2-sliver-entrypoint.sh +49 -0
- decepticon-1.1.0/containers/c2-sliver.Dockerfile +53 -0
- decepticon-1.1.0/containers/cli.Dockerfile +55 -0
- decepticon-1.1.0/containers/langgraph.Dockerfile +48 -0
- decepticon-1.1.0/containers/litellm.Dockerfile +16 -0
- decepticon-1.1.0/containers/postgres-init/01-create-web-db.sql +11 -0
- decepticon-1.1.0/containers/sandbox-entrypoint.sh +20 -0
- decepticon-1.1.0/containers/sandbox.Dockerfile +129 -0
- decepticon-1.1.0/containers/web-entrypoint.sh +80 -0
- decepticon-1.1.0/containers/web.Dockerfile +127 -0
- decepticon-1.1.0/decepticon/__init__.py +14 -0
- decepticon-1.1.0/decepticon/agents/__init__.py +39 -0
- decepticon-1.1.0/decepticon/agents/_benchmark_mode.py +8 -0
- decepticon-1.1.0/decepticon/agents/build.py +458 -0
- decepticon-1.1.0/decepticon/agents/middleware_slots.py +290 -0
- decepticon-1.1.0/decepticon/agents/plugins/__init__.py +12 -0
- decepticon-1.1.0/decepticon/agents/plugins/detector.py +199 -0
- decepticon-1.1.0/decepticon/agents/plugins/exploiter.py +219 -0
- decepticon-1.1.0/decepticon/agents/plugins/patcher.py +192 -0
- decepticon-1.1.0/decepticon/agents/plugins/scanner.py +193 -0
- decepticon-1.1.0/decepticon/agents/plugins/verifier.py +200 -0
- decepticon-1.1.0/decepticon/agents/plugins/vulnresearch.py +202 -0
- decepticon-1.1.0/decepticon/agents/prompts/__init__.py +476 -0
- decepticon-1.1.0/decepticon/agents/prompts/claude4_compat.py +209 -0
- decepticon-1.1.0/decepticon/agents/prompts/language.md +13 -0
- decepticon-1.1.0/decepticon/agents/prompts/plugins/detector.md +78 -0
- decepticon-1.1.0/decepticon/agents/prompts/plugins/exploiter.md +69 -0
- decepticon-1.1.0/decepticon/agents/prompts/plugins/patcher.md +87 -0
- decepticon-1.1.0/decepticon/agents/prompts/plugins/scanner.md +75 -0
- decepticon-1.1.0/decepticon/agents/prompts/plugins/verifier.md +87 -0
- decepticon-1.1.0/decepticon/agents/prompts/plugins/vulnresearch.md +139 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/ad_operator.md +58 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/analyst.md +197 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/cloud_hunter.md +57 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/contract_auditor.md +61 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/decepticon.md +177 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/exploit.md +204 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/postexploit.md +144 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/recon.md +172 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/reverser.md +63 -0
- decepticon-1.1.0/decepticon/agents/prompts/standard/soundwave.md +355 -0
- decepticon-1.1.0/decepticon/agents/standard/__init__.py +9 -0
- decepticon-1.1.0/decepticon/agents/standard/ad_operator.py +186 -0
- decepticon-1.1.0/decepticon/agents/standard/analyst.py +182 -0
- decepticon-1.1.0/decepticon/agents/standard/cloud_hunter.py +181 -0
- decepticon-1.1.0/decepticon/agents/standard/contract_auditor.py +189 -0
- decepticon-1.1.0/decepticon/agents/standard/decepticon.py +194 -0
- decepticon-1.1.0/decepticon/agents/standard/exploit.py +203 -0
- decepticon-1.1.0/decepticon/agents/standard/postexploit.py +199 -0
- decepticon-1.1.0/decepticon/agents/standard/recon.py +208 -0
- decepticon-1.1.0/decepticon/agents/standard/reverser.py +191 -0
- decepticon-1.1.0/decepticon/agents/standard/soundwave.py +145 -0
- decepticon-1.1.0/decepticon/backends/__init__.py +52 -0
- decepticon-1.1.0/decepticon/backends/factory.py +48 -0
- decepticon-1.1.0/decepticon/backends/http_sandbox.py +400 -0
- decepticon-1.1.0/decepticon/core/__init__.py +1 -0
- decepticon-1.1.0/decepticon/core/config.py +69 -0
- decepticon-1.1.0/decepticon/core/logging.py +120 -0
- decepticon-1.1.0/decepticon/core/schemas.py +1073 -0
- decepticon-1.1.0/decepticon/core/subagent_streaming.py +391 -0
- decepticon-1.1.0/decepticon/graph_registry.py +98 -0
- decepticon-1.1.0/decepticon/llm/__init__.py +24 -0
- decepticon-1.1.0/decepticon/llm/factory.py +983 -0
- decepticon-1.1.0/decepticon/llm/models.py +776 -0
- decepticon-1.1.0/decepticon/llm/router.py +40 -0
- decepticon-1.1.0/decepticon/middleware/__init__.py +17 -0
- decepticon-1.1.0/decepticon/middleware/engagement.py +306 -0
- decepticon-1.1.0/decepticon/middleware/filesystem.py +232 -0
- decepticon-1.1.0/decepticon/middleware/model_override.py +136 -0
- decepticon-1.1.0/decepticon/middleware/notifications.py +278 -0
- decepticon-1.1.0/decepticon/middleware/opplan.py +442 -0
- decepticon-1.1.0/decepticon/middleware/skills.py +328 -0
- decepticon-1.1.0/decepticon/plugin_loader.py +559 -0
- decepticon-1.1.0/decepticon/sandbox_kernel/__init__.py +59 -0
- decepticon-1.1.0/decepticon/sandbox_kernel/base.py +363 -0
- decepticon-1.1.0/decepticon/sandbox_kernel/daemon.py +169 -0
- decepticon-1.1.0/decepticon/sandbox_kernel/jobs.py +100 -0
- decepticon-1.1.0/decepticon/sandbox_kernel/tmux.py +740 -0
- decepticon-1.1.0/decepticon/sandbox_server/__init__.py +12 -0
- decepticon-1.1.0/decepticon/sandbox_server/__main__.py +31 -0
- decepticon-1.1.0/decepticon/sandbox_server/app.py +398 -0
- decepticon-1.1.0/decepticon/server/__init__.py +15 -0
- decepticon-1.1.0/decepticon/server/plugins_api.py +280 -0
- decepticon-1.1.0/decepticon/skills/benchmark/SKILL.md +117 -0
- decepticon-1.1.0/decepticon/skills/plugins/detector/SKILL.md +65 -0
- decepticon-1.1.0/decepticon/skills/plugins/exploiter/SKILL.md +75 -0
- decepticon-1.1.0/decepticon/skills/plugins/patcher/SKILL.md +68 -0
- decepticon-1.1.0/decepticon/skills/plugins/scanner/SKILL.md +59 -0
- decepticon-1.1.0/decepticon/skills/plugins/verifier/SKILL.md +85 -0
- decepticon-1.1.0/decepticon/skills/plugins/verifier/bounty-report/SKILL.md +142 -0
- decepticon-1.1.0/decepticon/skills/plugins/vulnresearch/SKILL.md +86 -0
- decepticon-1.1.0/decepticon/skills/shared/defense-evasion/SKILL.md +489 -0
- decepticon-1.1.0/decepticon/skills/shared/defense-evasion/references/amsi-bypass-techniques.md +103 -0
- decepticon-1.1.0/decepticon/skills/shared/finding-protocol/SKILL.md +93 -0
- decepticon-1.1.0/decepticon/skills/shared/opsec/SKILL.md +239 -0
- decepticon-1.1.0/decepticon/skills/shared/references/SKILL.md +82 -0
- decepticon-1.1.0/decepticon/skills/shared/stealth-infra/SKILL.md +334 -0
- decepticon-1.1.0/decepticon/skills/standard/ad/SKILL.md +32 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/SKILL.md +45 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/auth-bypass/SKILL.md +22 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/bounty-hunting/SKILL.md +130 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/chains/cred-reuse/SKILL.md +15 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/chains/idor-to-priv-esc/SKILL.md +14 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/chains/ssrf-to-rce/SKILL.md +17 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/chains/xss-to-takeover/SKILL.md +15 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/command-injection/SKILL.md +99 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/deserialization/SKILL.md +145 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/idor/SKILL.md +133 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/path-traversal/SKILL.md +22 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/pattern-exhaustion/SKILL.md +106 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/prompt-injection/SKILL.md +137 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/prototype-pollution/SKILL.md +103 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/sql-injection/SKILL.md +114 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/ssrf/SKILL.md +105 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/ssti/SKILL.md +25 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/trust-boundary/SKILL.md +128 -0
- decepticon-1.1.0/decepticon/skills/standard/analyst/xxe/SKILL.md +24 -0
- decepticon-1.1.0/decepticon/skills/standard/cloud/SKILL.md +29 -0
- decepticon-1.1.0/decepticon/skills/standard/cloud/aws-iam-enum/SKILL.md +65 -0
- decepticon-1.1.0/decepticon/skills/standard/contracts/SKILL.md +34 -0
- decepticon-1.1.0/decepticon/skills/standard/contracts/reentrancy/SKILL.md +47 -0
- decepticon-1.1.0/decepticon/skills/standard/decepticon/engagement-lifecycle/SKILL.md +129 -0
- decepticon-1.1.0/decepticon/skills/standard/decepticon/engagement-startup/SKILL.md +86 -0
- decepticon-1.1.0/decepticon/skills/standard/decepticon/final-report/SKILL.md +497 -0
- decepticon-1.1.0/decepticon/skills/standard/decepticon/kill-chain-analysis/SKILL.md +132 -0
- decepticon-1.1.0/decepticon/skills/standard/decepticon/orchestration/SKILL.md +180 -0
- decepticon-1.1.0/decepticon/skills/standard/decepticon/workflow.md +100 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/ad/SKILL.md +427 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/ad/references/attack-paths.md +135 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/reporting/SKILL.md +460 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/SKILL.md +118 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/blind-sqli.md +212 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/business-logic.md +144 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/command-injection.md +117 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/crypto.md +327 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/cve.md +194 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/deserialization.md +304 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/file-upload.md +116 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/graphql.md +111 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/idor.md +303 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/lfi.md +334 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/race-condition.md +138 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/smuggling.md +655 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/sqli.md +262 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/ssrf.md +156 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/ssti.md +315 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/xss.md +301 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/web/xxe.md +144 -0
- decepticon-1.1.0/decepticon/skills/standard/exploit/workflow.md +201 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/c2/SKILL.md +216 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/c2-sliver/SKILL.md +410 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/c2-sliver/references/sliver-quickstart.md +148 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/credential-access/SKILL.md +377 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/credential-access/references/lsass-techniques.md +126 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/lateral-movement/SKILL.md +460 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/privilege-escalation/SKILL.md +499 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/reporting/SKILL.md +548 -0
- decepticon-1.1.0/decepticon/skills/standard/post-exploit/workflow.md +82 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/active-recon/SKILL.md +399 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/cloud-recon/SKILL.md +264 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/cloud-recon/references/cloud-ip-ranges.md +111 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/cloud-recon/references/cloud-naming-patterns.md +136 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/osint/SKILL.md +235 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/passive-recon/SKILL.md +311 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/passive-recon/references/dns-techniques.md +99 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/passive-recon/scripts/parse_subdomains.py +71 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/reporting/SKILL.md +492 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/SKILL.md +69 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/api-enumeration.md +67 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/auth-mapping.md +40 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/cms-scanning.md +39 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/cookie-audit.md +45 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/discovery.md +116 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/web-recon/waf-detection.md +39 -0
- decepticon-1.1.0/decepticon/skills/standard/recon/workflow.md +120 -0
- decepticon-1.1.0/decepticon/skills/standard/reverser/SKILL.md +25 -0
- decepticon-1.1.0/decepticon/skills/standard/reverser/firmware/SKILL.md +61 -0
- decepticon-1.1.0/decepticon/skills/standard/reverser/triage/SKILL.md +47 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/abort-template/SKILL.md +74 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/cleanup-template/SKILL.md +72 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/conops-template/SKILL.md +74 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/conops-template/references/kill-chain-templates.md +66 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/contact-template/SKILL.md +82 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/data-handling-template/SKILL.md +72 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/opplan-converter/SKILL.md +83 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/opplan-converter/references/objective-rules.md +107 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/opplan-converter/references/objective-templates.md +240 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/references/schema-quick-reference.md +141 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/roe-template/SKILL.md +62 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/roe-template/references/roe-example.json +47 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/roe-template/references/validation-checklist.md +32 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/structured-questions/SKILL.md +113 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/threat-profile/SKILL.md +83 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/threat-profile/references/adversary-archetypes.md +113 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/threat-profile/references/apt-groups.md +128 -0
- decepticon-1.1.0/decepticon/skills/standard/soundwave/workflow.md +96 -0
- decepticon-1.1.0/decepticon/tools/__init__.py +35 -0
- decepticon-1.1.0/decepticon/tools/ad/__init__.py +30 -0
- decepticon-1.1.0/decepticon/tools/ad/adcs.py +196 -0
- decepticon-1.1.0/decepticon/tools/ad/bloodhound.py +282 -0
- decepticon-1.1.0/decepticon/tools/ad/dcsync.py +37 -0
- decepticon-1.1.0/decepticon/tools/ad/kerberos.py +141 -0
- decepticon-1.1.0/decepticon/tools/ad/tools.py +93 -0
- decepticon-1.1.0/decepticon/tools/bash/__init__.py +18 -0
- decepticon-1.1.0/decepticon/tools/bash/bash.py +506 -0
- decepticon-1.1.0/decepticon/tools/bash/prompt.py +310 -0
- decepticon-1.1.0/decepticon/tools/cloud/__init__.py +44 -0
- decepticon-1.1.0/decepticon/tools/cloud/aws.py +240 -0
- decepticon-1.1.0/decepticon/tools/cloud/k8s.py +300 -0
- decepticon-1.1.0/decepticon/tools/cloud/metadata.py +97 -0
- decepticon-1.1.0/decepticon/tools/cloud/terraform.py +151 -0
- decepticon-1.1.0/decepticon/tools/cloud/tools.py +91 -0
- decepticon-1.1.0/decepticon/tools/contracts/__init__.py +37 -0
- decepticon-1.1.0/decepticon/tools/contracts/foundry.py +157 -0
- decepticon-1.1.0/decepticon/tools/contracts/patterns.py +235 -0
- decepticon-1.1.0/decepticon/tools/contracts/slither.py +128 -0
- decepticon-1.1.0/decepticon/tools/contracts/tools.py +98 -0
- decepticon-1.1.0/decepticon/tools/filesystem.py +20 -0
- decepticon-1.1.0/decepticon/tools/interaction/__init__.py +13 -0
- decepticon-1.1.0/decepticon/tools/interaction/ask_user.py +160 -0
- decepticon-1.1.0/decepticon/tools/interaction/complete_planning.py +56 -0
- decepticon-1.1.0/decepticon/tools/opplan.py +1125 -0
- decepticon-1.1.0/decepticon/tools/references/__init__.py +51 -0
- decepticon-1.1.0/decepticon/tools/references/catalog.py +386 -0
- decepticon-1.1.0/decepticon/tools/references/cve_poc_index.py +322 -0
- decepticon-1.1.0/decepticon/tools/references/fetch.py +260 -0
- decepticon-1.1.0/decepticon/tools/references/h1_corpus.py +330 -0
- decepticon-1.1.0/decepticon/tools/references/hydrate.py +147 -0
- decepticon-1.1.0/decepticon/tools/references/killchain.py +329 -0
- decepticon-1.1.0/decepticon/tools/references/killchain.yaml +361 -0
- decepticon-1.1.0/decepticon/tools/references/methodology.py +196 -0
- decepticon-1.1.0/decepticon/tools/references/oneliners.py +198 -0
- decepticon-1.1.0/decepticon/tools/references/payloads.py +361 -0
- decepticon-1.1.0/decepticon/tools/references/payloads_ingest.py +285 -0
- decepticon-1.1.0/decepticon/tools/references/tools.py +439 -0
- decepticon-1.1.0/decepticon/tools/reporting/__init__.py +26 -0
- decepticon-1.1.0/decepticon/tools/reporting/bugcrowd.py +72 -0
- decepticon-1.1.0/decepticon/tools/reporting/executive.py +97 -0
- decepticon-1.1.0/decepticon/tools/reporting/hackerone.py +133 -0
- decepticon-1.1.0/decepticon/tools/reporting/timeline.py +74 -0
- decepticon-1.1.0/decepticon/tools/reporting/tools.py +56 -0
- decepticon-1.1.0/decepticon/tools/research/__init__.py +37 -0
- decepticon-1.1.0/decepticon/tools/research/_state.py +77 -0
- decepticon-1.1.0/decepticon/tools/research/bounty.py +343 -0
- decepticon-1.1.0/decepticon/tools/research/chain.py +423 -0
- decepticon-1.1.0/decepticon/tools/research/cve.py +469 -0
- decepticon-1.1.0/decepticon/tools/research/fuzz.py +357 -0
- decepticon-1.1.0/decepticon/tools/research/graph.py +374 -0
- decepticon-1.1.0/decepticon/tools/research/health.py +49 -0
- decepticon-1.1.0/decepticon/tools/research/neo4j_store.py +633 -0
- decepticon-1.1.0/decepticon/tools/research/patch.py +280 -0
- decepticon-1.1.0/decepticon/tools/research/poc.py +352 -0
- decepticon-1.1.0/decepticon/tools/research/sarif.py +240 -0
- decepticon-1.1.0/decepticon/tools/research/scanner_tools.py +570 -0
- decepticon-1.1.0/decepticon/tools/research/tools.py +2388 -0
- decepticon-1.1.0/decepticon/tools/reversing/__init__.py +38 -0
- decepticon-1.1.0/decepticon/tools/reversing/binary.py +214 -0
- decepticon-1.1.0/decepticon/tools/reversing/packer.py +100 -0
- decepticon-1.1.0/decepticon/tools/reversing/rop.py +75 -0
- decepticon-1.1.0/decepticon/tools/reversing/scripts.py +80 -0
- decepticon-1.1.0/decepticon/tools/reversing/strings.py +188 -0
- decepticon-1.1.0/decepticon/tools/reversing/symbols.py +159 -0
- decepticon-1.1.0/decepticon/tools/reversing/tools.py +120 -0
- decepticon-1.1.0/decepticon/tools/skills.py +186 -0
- decepticon-1.1.0/decepticon/tools/web/__init__.py +40 -0
- decepticon-1.1.0/decepticon/tools/web/graphql.py +304 -0
- decepticon-1.1.0/decepticon/tools/web/http.py +291 -0
- decepticon-1.1.0/decepticon/tools/web/jwt.py +313 -0
- decepticon-1.1.0/decepticon/tools/web/oauth.py +248 -0
- decepticon-1.1.0/decepticon/tools/web/session.py +205 -0
- decepticon-1.1.0/decepticon/tools/web/tools.py +155 -0
- decepticon-1.1.0/docker-compose.dev.yml +31 -0
- decepticon-1.1.0/docker-compose.watch.yml +51 -0
- decepticon-1.1.0/docker-compose.yml +338 -0
- decepticon-1.1.0/docs/agents.md +113 -0
- decepticon-1.1.0/docs/architecture/context-engineering.md +307 -0
- decepticon-1.1.0/docs/architecture/red-team-infrastructure.md +650 -0
- decepticon-1.1.0/docs/architecture.md +164 -0
- decepticon-1.1.0/docs/benchmark-comparison.md +88 -0
- decepticon-1.1.0/docs/cli-reference.md +156 -0
- decepticon-1.1.0/docs/contributing.md +191 -0
- decepticon-1.1.0/docs/design/attack-graph-schema.md +414 -0
- decepticon-1.1.0/docs/design/opplan-middleware.md +694 -0
- decepticon-1.1.0/docs/design/single-bash-and-graphdb.md +61 -0
- decepticon-1.1.0/docs/e2e-testing-guide.md +211 -0
- decepticon-1.1.0/docs/engagement-workflow.md +159 -0
- decepticon-1.1.0/docs/getting-started.md +106 -0
- decepticon-1.1.0/docs/knowledge-graph.md +110 -0
- decepticon-1.1.0/docs/library-usage.md +396 -0
- decepticon-1.1.0/docs/makefile-reference.md +120 -0
- decepticon-1.1.0/docs/models.md +353 -0
- decepticon-1.1.0/docs/offensive-vaccine.md +89 -0
- decepticon-1.1.0/docs/proposals/156-compose-architecture.md +123 -0
- decepticon-1.1.0/docs/pypi-distribution-strategy.md +161 -0
- decepticon-1.1.0/docs/red-team/ai-red-teaming.md +229 -0
- decepticon-1.1.0/docs/red-team/operations.md +280 -0
- decepticon-1.1.0/docs/red-team/opplan-domain-knowledge.md +180 -0
- decepticon-1.1.0/docs/red-team/recon-methodology.md +428 -0
- decepticon-1.1.0/docs/red-team/tools-techniques.md +355 -0
- decepticon-1.1.0/docs/setup-guide.md +922 -0
- decepticon-1.1.0/docs/skills.md +201 -0
- decepticon-1.1.0/docs/superpowers/plans/2026-05-22-pypi-distribution.md +455 -0
- decepticon-1.1.0/docs/superpowers/specs/2026-05-22-pypi-distribution-strategy-design.md +185 -0
- decepticon-1.1.0/docs/web-dashboard.md +101 -0
- decepticon-1.1.0/langgraph.json +21 -0
- decepticon-1.1.0/package-lock.json +14004 -0
- decepticon-1.1.0/package.json +28 -0
- decepticon-1.1.0/pyproject.toml +262 -0
- decepticon-1.1.0/scripts/init-web-db.sql +4 -0
- decepticon-1.1.0/scripts/init_neo4j.cypher +74 -0
- decepticon-1.1.0/scripts/install.sh +474 -0
- decepticon-1.1.0/scripts/render_benchmark_charts.py +292 -0
- decepticon-1.1.0/scripts/web-hotswap.sh +139 -0
- decepticon-1.1.0/tests/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/ad/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/ad/test_ad.py +174 -0
- decepticon-1.1.0/tests/unit/agents/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/agents/test_build.py +440 -0
- decepticon-1.1.0/tests/unit/backends/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/backends/test_background_jobs.py +201 -0
- decepticon-1.1.0/tests/unit/backends/test_docker_sandbox_helpers.py +183 -0
- decepticon-1.1.0/tests/unit/backends/test_session_log.py +488 -0
- decepticon-1.1.0/tests/unit/backends/test_skills_path.py +15 -0
- decepticon-1.1.0/tests/unit/benchmark/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/benchmark/test_harness.py +341 -0
- decepticon-1.1.0/tests/unit/benchmark/test_harness_cost.py +115 -0
- decepticon-1.1.0/tests/unit/benchmark/test_schemas.py +155 -0
- decepticon-1.1.0/tests/unit/benchmark/test_scorer.py +155 -0
- decepticon-1.1.0/tests/unit/benchmark/test_xbow_provider.py +172 -0
- decepticon-1.1.0/tests/unit/cloud/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/cloud/test_cloud.py +189 -0
- decepticon-1.1.0/tests/unit/contracts/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/contracts/test_patterns_slither.py +118 -0
- decepticon-1.1.0/tests/unit/core/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/core/test_config.py +25 -0
- decepticon-1.1.0/tests/unit/core/test_logging.py +125 -0
- decepticon-1.1.0/tests/unit/core/test_schemas.py +286 -0
- decepticon-1.1.0/tests/unit/core/test_subagent_streaming.py +275 -0
- decepticon-1.1.0/tests/unit/core/test_workspace_scaffold.py +57 -0
- decepticon-1.1.0/tests/unit/llm/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/llm/test_factory.py +1178 -0
- decepticon-1.1.0/tests/unit/llm/test_litellm_dynamic_config.py +261 -0
- decepticon-1.1.0/tests/unit/llm/test_models.py +514 -0
- decepticon-1.1.0/tests/unit/llm/test_oauth_token_store.py +397 -0
- decepticon-1.1.0/tests/unit/llm/test_ollama_probe.py +340 -0
- decepticon-1.1.0/tests/unit/llm/test_router.py +67 -0
- decepticon-1.1.0/tests/unit/middleware/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/middleware/test_engagement.py +527 -0
- decepticon-1.1.0/tests/unit/middleware/test_filesystem.py +204 -0
- decepticon-1.1.0/tests/unit/middleware/test_model_override.py +280 -0
- decepticon-1.1.0/tests/unit/middleware/test_notifications.py +253 -0
- decepticon-1.1.0/tests/unit/middleware/test_opplan_hierarchy.py +477 -0
- decepticon-1.1.0/tests/unit/middleware/test_opplan_persistence.py +416 -0
- decepticon-1.1.0/tests/unit/middleware/test_skills.py +287 -0
- decepticon-1.1.0/tests/unit/prompts/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/prompts/test_claude4_compat.py +132 -0
- decepticon-1.1.0/tests/unit/references/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/references/test_cve_poc_index.py +123 -0
- decepticon-1.1.0/tests/unit/references/test_h1_corpus.py +114 -0
- decepticon-1.1.0/tests/unit/references/test_hydrate.py +61 -0
- decepticon-1.1.0/tests/unit/references/test_killchain.py +94 -0
- decepticon-1.1.0/tests/unit/references/test_methodology.py +93 -0
- decepticon-1.1.0/tests/unit/references/test_oneliners.py +93 -0
- decepticon-1.1.0/tests/unit/references/test_payloads_ingest.py +125 -0
- decepticon-1.1.0/tests/unit/references/test_references.py +178 -0
- decepticon-1.1.0/tests/unit/references/test_tools_new.py +153 -0
- decepticon-1.1.0/tests/unit/reporting/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/reporting/test_reporting.py +106 -0
- decepticon-1.1.0/tests/unit/research/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/research/test_bounty.py +176 -0
- decepticon-1.1.0/tests/unit/research/test_cve.py +133 -0
- decepticon-1.1.0/tests/unit/research/test_fuzz.py +178 -0
- decepticon-1.1.0/tests/unit/research/test_graph.py +171 -0
- decepticon-1.1.0/tests/unit/research/test_kg_ingest_kali.py +304 -0
- decepticon-1.1.0/tests/unit/research/test_no_neo4j_at_import.py +15 -0
- decepticon-1.1.0/tests/unit/research/test_patch.py +269 -0
- decepticon-1.1.0/tests/unit/research/test_poc.py +173 -0
- decepticon-1.1.0/tests/unit/research/test_sarif.py +145 -0
- decepticon-1.1.0/tests/unit/research/test_scanner_tools.py +266 -0
- decepticon-1.1.0/tests/unit/research/test_state_backend.py +92 -0
- decepticon-1.1.0/tests/unit/research/test_tools.py +362 -0
- decepticon-1.1.0/tests/unit/reversing/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/reversing/test_binary_strings_packer.py +238 -0
- decepticon-1.1.0/tests/unit/schemas/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/test_plugin_loader.py +490 -0
- decepticon-1.1.0/tests/unit/test_wheel_contents.py +35 -0
- decepticon-1.1.0/tests/unit/tools/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/tools/bash/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/tools/bash/test_bash_output.py +156 -0
- decepticon-1.1.0/tests/unit/tools/bash/test_passive_read_stale_guard.py +158 -0
- decepticon-1.1.0/tests/unit/tools/test_ask_user_question.py +270 -0
- decepticon-1.1.0/tests/unit/web/__init__.py +0 -0
- decepticon-1.1.0/tests/unit/web/test_graphql.py +205 -0
- decepticon-1.1.0/tests/unit/web/test_http.py +54 -0
- decepticon-1.1.0/tests/unit/web/test_jwt.py +101 -0
- decepticon-1.1.0/tests/unit/web/test_oauth_session.py +108 -0
- 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 -->
|