Skip to content

DaCameraGirl/Compass-Ultra-AI-Dev-Ops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Compass Ultra AI DevOps — chatbot and release-loop tests

AI DevOps chatbot and automated release-loop test agent for Compass Ultra.
Chat about release readiness, or run Playwright checks against the live demo — external operator evidence for launch gates.

GitHub Pages chat Compass Ultra demo Product repo

Version 1.0.0 Chatbot live on Pages Playwright Daily CI

Languages

JavaScript 70% CSS 20% HTML 10%

Stack

Node.js Playwright GitHub Pages

Built by Angela Hudson · DaCameraGirl

What this repo does

This repo has two jobs for Compass Ultra only:

  1. AI DevOps chatbot — release-readiness Q&A at a public GitHub Pages URL (no install required).
  2. Playwright release-loop test — automated checks against the live demo app (runs in GitHub Actions daily).

Demo target: https://www.compassultra.com/app?demo=true

Not related to Project Hydra or warehouse video tools — those live in separate repos.

%%{init: {'theme': 'dark'}}%%
flowchart LR
  A[Chat or CI trigger] --> B[AI DevOps assistant]
  B --> C[Compass Ultra demo]
  C --> D[Flags + policy gates]
  D --> E[Risk + snapshot diff]
  E --> F[PDF + report artifacts]

  style A fill:#12102a,stroke:#bc8cff,color:#e6edf3
  style B fill:#12102a,stroke:#bc8cff,color:#e6edf3
  style C fill:#0d1b33,stroke:#58a6ff,color:#e6edf3
  style D fill:#0d1b33,stroke:#ffb800,color:#e6edf3
  style E fill:#0d1b33,stroke:#33d69f,color:#e6edf3
  style F fill:#0d1b33,stroke:#33d69f,color:#e6edf3
Loading

Chatbot live now

Open the chatbot in your browser — no install, no localhost:

https://dacameragirl.github.io/Compass-Ultra-AI-Dev-Ops/

It runs on GitHub Pages with a built-in release assistant. No API key, no npm start, no dev server.

The chatbot can help with:

  • Release risk analysis
  • Policy gates
  • Snapshot diffs
  • PDF runbooks
  • Rollback planning
  • GitHub, Jira, and Slack workflow payloads
  • CI release gates
  • Launch readiness checklists

Every push to main redeploys the chatbot via .github/workflows/deploy-pages.yml.

Optional: local dev server with OpenAI API

Only needed if you want to wire in an external AI provider while developing:

npm install
npm start

Then open http://localhost:8787 and set:

AI_API_KEY=your_key
AI_BASE_URL=https://api.openai.com/v1
AI_MODEL=gpt-4.1-mini

OPENAI_API_KEY also works if AI_API_KEY is not set.

Automated AI DevOps Test

In GitHub Actions (recommended): the workflow in .github/workflows/ai-devops-test.yml runs daily at 6:00 UTC and can be triggered manually from the Actions tab. Reports upload as workflow artifacts.

Locally (optional):

npm install
npx playwright install chromium
npm test

The test checks:

  • Demo workspace loads
  • Core release-review buttons are visible
  • Feature flags can be toggled
  • AI risk analysis can run
  • Snapshot diff opens
  • PDF runbook export starts
  • Policy gates are visible
  • GitHub, Jira, and Slack workflow areas are reachable
  • Console errors are collected for review

A local run writes:

  • ai-devops-report.html
  • risk-analysis-failure.png if a failure occurs
  • downloaded-runbook.pdf if export succeeds

Repo Structure

.
├── .github/workflows/
│   ├── deploy-pages.yml    Publishes chatbot to GitHub Pages
│   └── ai-devops-test.yml  Daily Playwright release-loop test
├── public/                 GitHub Pages site (live URL)
│   ├── app.js
│   ├── index.html
│   └── styles.css
├── tests/test-release-loop.js
├── package.json
├── server.js               Optional local dev server + API proxy
└── README.md

Related repos

Repo Role
Compass-Ultra-Pro Production Compass Ultra app
Compass-Ultra Public showcase / docs
compass-ultra-backend API + live AI for the product

Notes

This repo is intentionally separate from the main Compass Ultra product repo. It acts like an external AI DevOps operator: chat with it, run release checks, and use the output as launch-readiness evidence.

Open demo Chat online

About

Compass Ultra AI DevOps — release-readiness chatbot + daily Playwright checks against the live demo. Not Hydra.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors