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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ an optional AI layer explains them and provably cannot invent them.
Built with .NET 10, React and TypeScript, a read-only GitHub App, and the OpenAI
API.

![Connected dashboard](docs/assets/screenshots/01-connected-dashboard.png)
![The deployed workspace, open to anyone](docs/assets/screenshots/01-connected-dashboard.png)

---

Expand Down
Binary file modified docs/assets/screenshots/01-connected-dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/screenshots/04-public-repo-self-scan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/devsecops-sentinel-web/scripts/capture-screenshots.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,17 @@ async function main() {
await page.getByRole('button', { name: 'AI advisor' }).click();
await page.getByText('Advisory only').waitFor();
await capture(page, '03-live-ai-safe-workflow.png');

// 4 — the scanner scanning its own repository through the public tab. The
// three findings that come back are the documented, test-enforced
// exceptions from RepositoryWorkflowsTests, which is the point of the
// image: the tool does not hide its own findings. Needs no key and spends
// nothing — the fetch is anonymous.
await page.getByRole('tab', { name: /Public repo/ }).click();
await page.getByLabel('Public repository').fill('bgard68/DevSecOpsSentinel');
await page.getByRole('button', { name: 'Scan public repository' }).click();
await page.getByText('ci.yml', { exact: true }).waitFor({ timeout: 60_000 });
await capture(page, '04-public-repo-self-scan.png');
} finally {
await browser.close();
}
Expand Down