Contents:
- automated_test_generation_spec.md (spec with code)
- src/poller/jira_poller.py (Jira poller)
- src/agent/unified_generator.py (unified test generator)
- examples/sample_test_playwright.py (Playwright+Pytest sample)
- src/indexer/github_indexer.py (shallow clone + index)
- knowledge_base_schema.json (KB schema)
- ci_cd_pipeline.yml (GitHub Actions tests)
- .github/workflows/index_kb.yml (KB indexing workflow)
- Dockerfile, docker-compose.yml
- config/example.config.yaml
- Makefile
- requirements.txt
Quick start:
- python -m venv .venv && source .venv/bin/activate
- pip install -r requirements.txt
- export APP_BASE_URL=https://example.com
- pytest -q
- make run-agent (uses sample_ticket.json + knowledge_base_schema.json)
- export GITHUB_REPO_URL=... && make index-github