-
Notifications
You must be signed in to change notification settings - Fork 0
Project Structure
hypersdk edited this page Aug 7, 2026
·
1 revision
Where code and artifacts live. From the README.
├── orchestrator/ # LangGraph pipeline, CLI, webhook, dashboard
│ └── nodes/ # One node per pipeline stage
├── agents/
│ ├── common/ # Pydantic models + LLM factory
│ ├── parser/ # Requirement parsing (LLM + rules)
│ ├── generator/ # Playwright generation + quality gate
│ ├── execution/ # Playwright bridge + artifacts
│ ├── discover/ # Coverage from code/docs + live crawl
│ ├── coverage/ # Gap analysis + V8 aggregation
│ ├── regression/ # Screenshot diff (Pillow / Rust)
│ ├── api_validation/ # HTTP status checks
│ ├── logs/ # Console/network log analysis
│ ├── analyzer/ # LLM failure analysis
│ ├── autofix/ # Selector repair + apply
│ ├── nl_create/ # Natural-language tests
│ └── reporter/ # HTML/PDF + notify channels
├── github_integration/ # API client, workflows
├── playwright/ # Config, fixtures, crawl, PDF scripts
├── prompts/ # LLM system prompts
├── templates/ # Jinja fallback tests + HTML report + CI starters
├── tests/manual/ # Hand-written smoke / visual tests
├── tests/generated/ # Ephemeral generated specs
├── tests/fixtures/ # Fetched specs, requirements.json
├── knowledge/ · knowledge_docs/ # Ask Zyvor RAG content
├── rust/ # zyvor-diff binary
├── kubernetes/ # Cluster manifests
├── docker/ # Container build
├── reports/ # HTML/PDF/summary.json outputs
├── screenshots/ # baselines / current / diffs
└── action.yml # Reusable GitHub Action
| Goal | Path |
|---|---|
| Hand-owned tests | tests/manual/ |
| Specs for generate |
prompts/examples/, product docs/specs/
|
| CI templates | templates/ci/ |
| Env template |
.env.example, .env.knowledge.example
|
| Customer manuals | docs/customer/ |
Related: Architecture · CLI Commands · Contributing
Start: Home · Getting Started · Tutorials · Workflows · Admin · Dashboard
Tutorials: Spec→Test · NL · GitHub · Coverage · Visual · Notify · External CI · Agent CI · zyvor.dev · Specs
Build: Architecture · Config · Authoring · Structure · Multi-browser · Rust
Actions: Mission Control · Journeys · API/Auth · Probes · Schedules · Ask Zyvor · Autofix
Ship: API · Webhooks · Security · CI/CD · Deploy · Releases · Enterprise
More: Troubleshoot · FAQ · Glossary · Contributing · Demos · Docs
Guides