cybersense.solutions

Operational Platform

Modular AI-assisted workflow tools for CyberSense content production. Start from a pipeline runner for an automated, gated end-to-end pass — or open any agent standalone to run, retry, or debug a single stage.

Pipeline Runners — Automated, gated end-to-end
Intel Brief Runner
5 articles · per-article control
Runs the full article pipeline without file handoffs — from titling and severity through drafting and layout. Batch or per-article, with human gates at Rob and Mary.
HenryVictorJamesJasonRobMaya ∥ MaryEthan
Daily Brief Runner
1 edition · 6 sources
Builds the Daily Digital Awareness Brief from six source articles through to the finished newsletter HTML.
RuthPeterEdKirbyMayaLucy
Strategy — API Stage · Pipeline Steps 1–2
Backend endpoints — no standalone UI. POST /api/strategy/run chains Henry → Victor and returns the title, slug, severity, and date that James & Jason consume at step 3.
Henry
Title & Slug
API
Victor
CVSS Severity
API
Handoff → Intel Brief (James & Jason)
Intel Brief — Standalone Agent Tools
Daily Brief — Standalone Agent Tools
Naming Conventions
Ops Output Files (cybersense-ops)
PatternYYYYMMDD_agentname_v#.ext
Example20260710_james_v1.txt
Example20260710_maya_v1.png
Example20260710_mary_v1.html
Published Files (cybersense-solutions)
Articlesarticles/YYYY/Mon/YYYYMMDD-Slug.html
Bannersbanners/Slug.png
Newsletternewsletter/YYYY/Mon/MMDDYYYY.html
EditionMMDDYYYY_edition###.html
Repository Map
cybersense-ops
github.com/BorgesLebron/cybersense-ops
cybersense-ops/ ├── index.html ← this page ├── server.js ← Express proxy ├── package.json ├── Dockerfile ├── railway.toml └── agents/ ├── strategy/ ← API · steps 1–2 │ ├── strategy.router.js │ ├── strategy.verify.mjs │ └── lib/ │ ├── henry.js │ ├── victor.js │ └── strategy.js ├── intel-brief/ │ ├── james.html ← live │ ├── jason.html │ └── rob.html ├── daily-brief/ │ ├── ruth.html │ ├── peter.html │ └── ed.html ├── design/ │ └── maya.html └── publishing/ ├── mary.html ├── kirby.html ├── ethan.html └── lucy.html
cybersense-solutions
github.com/BorgesLebron/cybersense-solutions
cybersense-solutions/ ├── index.html ├── intel.html ← Ethan updates ├── newsletter.html ← Lucy updates ├── styles.css ├── articles/ │ └── YYYY/Mon/ │ └── YYYYMMDD-Slug.html ├── banners/ │ └── Slug.png └── newsletter/ └── YYYY/Mon/ └── MMDDYYYY_edition###.html