Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Publish to PyPI

on:
push:
tags:
- "v*"

jobs:
build:
name: Build distribution
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install build backend
run: |
python -m pip install --upgrade pip
pip install build

- name: Build sdist and wheel
run: python -m build

- name: Upload distribution artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/

publish:
name: Publish to PyPI
needs: build
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write

steps:
- name: Download distribution artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist/

- name: Publish to PyPI (trusted publishing)
uses: pypa/gh-action-pypi-publish@release/v1
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

All notable changes to CyberAI are documented here.

## [1.0.0] - 2026-06-20
### Production Release — STANDOFF complete
The 30-day STANDOFF is done: a non-working skeleton is now a production-ready
AI-native multi-agent pentest platform. CLI, web dashboard and MCP server all
operational; ~120 commits across five phases. This release tags the cumulative
result of weeks 1-4 plus the polish sprint.

### Highlights by phase
- **Week 1 — Reanimation:** unified `ScanSession`, `BaseAgent` contract,
rewritten orchestrator, all 4 agents migrated, end-to-end `--dry-run`
pipeline with smoke coverage.
- **Week 2 — Hardening:** Pydantic result schemas, prompt-injection defense at
phase boundaries, command-injection-safe nmap with caching, EPSS enrichment,
NVD API key + rate limiting, datetime/pyproject modernization, real e2e tests.
- **Week 3 — Acceleration:** async pipeline (`AsyncOrchestrator`), cost tracking
with budget caps, Anthropic prompt caching, native LLM tool calling,
structured outputs, SQLite audit log + session replay.
- **Week 4 — Differentiation:** OOB-driven exploitation (phantom-grid v2.0),
Nuclei exploit engine, Web3 audit track (Slither + Immunefi severity),
MCP server, LLM-as-Judge report validation, bug-bounty scope import,
FastAPI dashboard with SSE live progress.
- **Polish:** full documentation sprint (README, agent API reference, OOB and
Web3 workflow guides), PyPI trusted publishing on tag.

### Added
- `release.yml` workflow: PyPI trusted publishing triggered on `v*` tags.

### Changed
- Version bumped to 1.0.0 — first stable release.

## [0.5.0] - 2026-06-18
### Differentiated Platform — Week 4
Week 4 gives CyberAI its unique edge: out-of-band-driven exploitation, a
Expand Down
2 changes: 1 addition & 1 deletion cyberai/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.5.0"
__version__ = "1.0.0"
__author__ = "evkir"
__description__ = "CyberAI — AI-native multi-agent pentest platform"
Loading