Skip to main content

Reusable QA skills with safe agent adapters and deterministic behavior evaluations

Project description

QACraft

Reusable AI skills, safe installation lifecycle, and deterministic behavior evaluations for everyday software QA work.

QACraft 1.4.0 includes:

  • 25 detailed QA workflow skills
  • shared QA, evidence, security, approval, data, result, publication, and release policies
  • generic, Codex, Claude Code, GitHub Copilot, Gemini CLI, and OpenCode project adapters
  • preview-first install, verify, update, and uninstall commands
  • versioned manifests, SHA-256 verification, rollback, and conflict protection
  • deterministic structured-report evaluations for ten priority QA skills
  • passing examples and targeted failure fixtures with declared expected results
  • qacraft and python -m qacraft entry points
  • verified self-contained wheel and source-distribution builds
  • generated HTML documentation, schemas, examples, templates, tests, and release guidance

No third-party runtime Python packages are required. Python 3.10 or newer is supported.

Start from a checkout

python3 -m pip install --no-deps -e .
qacraft doctor
qacraft list
python3 -m qacraft eval-list
qacraft release-check
python3 scripts/demo.py

Pip may create an isolated build environment to obtain the declared setuptools build backend. QACraft itself still installs with zero runtime dependencies because --no-deps is used.

The original python3 scripts/qacraft.py ... interface remains supported.

Build verified artifacts

Use the standard build frontend:

python3 -m pip install build
python3 -m build --sdist --wheel --outdir dist

Compatibility commands remain available when their build tools are installed:

python3 setup.py sdist --dist-dir dist
python3 -m pip wheel --no-deps --no-build-isolation --wheel-dir dist .

Install the built wheel locally:

python3 -m pip install --no-deps dist/qacraft-1.4.0-py3-none-any.whl
qacraft doctor

The wheel contains a generated qacraft/bundle/ assembled from an explicit allowlist during the temporary build. The repository keeps one canonical copy of every skill, policy, schema, rubric, fixture, and document.

The source distribution contains the canonical source tree and build recipe. Both artifact types are inspected, installed into isolated environments, and exercised through release checks, evaluation, and agent lifecycle tests.

No PyPI or other package-index publication is claimed or performed.

Install into a verified agent

Each adapter uses an officially documented project skill location and a separate QACraft manifest.

Agent --agent value Skill location Manifest
Codex codex .agents/skills/<skill>/ .agents/qacraft/manifest.json
Claude Code claude-code .claude/skills/<skill>/ .claude/qacraft/manifest.json
GitHub Copilot github-copilot .github/skills/<skill>/ .github/qacraft/manifest.json
Gemini CLI gemini-cli .gemini/skills/<skill>/ .gemini/qacraft/manifest.json
OpenCode opencode .opencode/skills/<skill>/ .opencode/qacraft/manifest.json

Preview:

qacraft install feature-qa bug-report \
  --agent github-copilot \
  --destination /path/to/project

Apply:

qacraft install feature-qa bug-report \
  --agent github-copilot \
  --destination /path/to/project \
  --apply

Replace github-copilot with any verified --agent value from the table. QACraft does not automatically detect an agent, install to user-global paths, or modify agent configuration files.

Verify, update, and uninstall

qacraft verify-install \
  --agent github-copilot \
  --destination /path/to/project

qacraft update feature-qa bug-report release-qa \
  --agent github-copilot \
  --destination /path/to/project \
  --apply

qacraft uninstall \
  --agent github-copilot \
  --destination /path/to/project \
  --apply

Install, update, and uninstall are preview-only without --apply. Existing unowned files are never overwritten. Modified managed files block update and uninstall. Failed installs and updates roll back QACraft-managed changes. Independent manifests allow different adapters to coexist in one repository.

Evaluate structured QA reports

qacraft eval-list
qacraft evaluate \
  --input evaluations/examples/api-qa-pass.json

Deterministic rubrics are included for:

  • /feature-qa
  • /ticket-review
  • /bug-report
  • /verify-fix
  • /release-qa
  • /test-plan
  • /regression-scope
  • /customer-issue-repro
  • /api-qa
  • /staged-rollout-check

The evaluator checks schema conformance, source grounding, approval gates, evidence quality, verdict discipline, safety declarations, and output contracts. It does not call an AI model and does not prove that external evidence is authentic.

Published examples and targeted failure cases are declared in evaluations/fixtures.json. Release readiness evaluates every listed fixture and confirms that each failure case triggers its declared policy check.

Validate the repository

python3 scripts/generate_docs.py
python3 scripts/validate_repo.py
python3 -m unittest discover -s tests -v
qacraft release-check
python3 scripts/demo.py

Generated documentation must be committed. The pull-request workflow runs one Python 3.12 validation job and does not run again after merge.

Documentation

Serve the HTML documentation locally:

python3 scripts/serve.py

The generated site already lives under /docs. GitHub Pages may be enabled manually using branch-based publishing when the repository plan and visibility support it. No additional automatic Pages workflow is required.

Skill catalog

Planning and scope

/ticket-review · /test-plan · /regression-scope · /platform-matrix

Execution and product behaviour

/feature-qa · /exploratory-qa · /smoke-test · /permission-qa · /api-qa · /network-qa · /offline-qa · /playback-qa

Defects and verification

/bug-report · /bug-triage · /verify-fix · /customer-issue-repro · /flaky-test-triage

Release and operations

/release-qa · /staged-rollout-check · /incident-qa

Automation and maintenance

/automation-review · /test-case-review

Communication and improvement

/qa-daily-summary · /qa-handoff · /qa-retrospective

Safety model

QACraft skills are instructions and specifications—not a permission system.

Production adopters must enforce:

  • least-privilege filesystem, command, repository, browser, and network permissions
  • secret isolation and customer-data controls
  • authenticated, version-bound approval gates
  • evidence privacy, integrity, access, retention, and deletion controls
  • idempotent, conflict-aware external writes
  • monitoring, audit logs, incident response, and rollback

Never grant production, customer, or security-sensitive access merely because a skill describes safe behavior.

Repository structure

QACraft/
├── adapters/
├── catalog/
├── docs/
├── evaluations/
├── qacraft/
├── schemas/
├── scripts/
├── shared/
├── skills/
├── tests/
├── .github/workflows/
├── MANIFEST.in
├── qacraft_build.py
├── setup.py
├── AGENTS.md
├── CLAUDE.md
├── CHANGELOG.md
├── CONTRIBUTING.md
├── SECURITY.md
└── README.md

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qacraft-1.4.0.tar.gz (498.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qacraft-1.4.0-py3-none-any.whl (765.8 kB view details)

Uploaded Python 3

File details

Details for the file qacraft-1.4.0.tar.gz.

File metadata

  • Download URL: qacraft-1.4.0.tar.gz
  • Upload date:
  • Size: 498.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for qacraft-1.4.0.tar.gz
Algorithm Hash digest
SHA256 c8b6a9c9be1761d5e10c3f3be7e6a7b1d51759d71d7e9c9a51cda8fff92f8b0f
MD5 4ba577c0dd82b5af964de8c0a44cbfcf
BLAKE2b-256 5312bf2cfae5c463c6dc2526e1ac5b26e4979f67d6e91a2288b6c4ed399f74e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for qacraft-1.4.0.tar.gz:

Publisher: publish-pypi.yml on SUDARSHANCHAUDHARI/QACraft

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qacraft-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: qacraft-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 765.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for qacraft-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 429692e7d3c255175c883a59feca5b41e01ceb630a7870d5317a45090cb9e294
MD5 01a204d85397f0cb7752d835d78e5a0f
BLAKE2b-256 233cb55e93bb73df366f443f8b9088202c2b2818a7c5a25c7b8fb2ce1b7a6d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for qacraft-1.4.0-py3-none-any.whl:

Publisher: publish-pypi.yml on SUDARSHANCHAUDHARI/QACraft

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page