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.1 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
qacraftandpython -m qacraftentry 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.
Install from PyPI
python3 -m pip install qacraft==1.4.1
qacraft doctor
qacraft list
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.1-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.
Install into a verified agent
Each adapter uses an officially documented project skill location and a separate QACraft manifest.
The --destination must already exist and must be the intended project root. QACraft refuses a missing path instead of creating and populating a possibly mistyped destination. It may create only documented QACraft-owned subdirectories inside that existing root.
| 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/existing-project
Apply:
qacraft install feature-qa bug-report \
--agent github-copilot \
--destination /path/to/existing-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/existing-project
qacraft update feature-qa bug-report release-qa \
--agent github-copilot \
--destination /path/to/existing-project \
--apply
qacraft uninstall \
--agent github-copilot \
--destination /path/to/existing-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.
Documentation
- Published documentation
- Installation and lifecycle
- Compatibility matrix
- Behavior evaluations
- Production readiness
- Publishing
- Phase 2 architecture
- Release checklist
- Changelog
- HTML documentation:
docs/index.html
Serve the HTML documentation locally:
python3 scripts/serve.py
The published site is deployed by .github/workflows/pages.yml.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qacraft-1.4.1.tar.gz.
File metadata
- Download URL: qacraft-1.4.1.tar.gz
- Upload date:
- Size: 505.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2aa4f7b9bddb3d230d8c6c49553bac3601f25ffc5a280c34805d31026bddb800
|
|
| MD5 |
2801825378fdc0301cd644d3af8c73e2
|
|
| BLAKE2b-256 |
c4f17473b6e0d8f294413ccec1c1e2cb1f20371778d64bbea24ecf968216b0f1
|
Provenance
The following attestation bundles were made for qacraft-1.4.1.tar.gz:
Publisher:
publish-pypi.yml on SUDARSHANCHAUDHARI/QACraft
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qacraft-1.4.1.tar.gz -
Subject digest:
2aa4f7b9bddb3d230d8c6c49553bac3601f25ffc5a280c34805d31026bddb800 - Sigstore transparency entry: 2223984283
- Sigstore integration time:
-
Permalink:
SUDARSHANCHAUDHARI/QACraft@41265a89c66afe8b03420e372272f832ef8f0540 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/SUDARSHANCHAUDHARI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@41265a89c66afe8b03420e372272f832ef8f0540 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file qacraft-1.4.1-py3-none-any.whl.
File metadata
- Download URL: qacraft-1.4.1-py3-none-any.whl
- Upload date:
- Size: 769.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edaac741df743d224e674dca1f5cae2fe7b6fffc0323d4004c7910d11dbf062c
|
|
| MD5 |
96e54a2e428baa7d1ec9594fffda6810
|
|
| BLAKE2b-256 |
41930d8d11b92eca8020175ca3a76775c0ce1a56f6054db313508ddd68141ae1
|
Provenance
The following attestation bundles were made for qacraft-1.4.1-py3-none-any.whl:
Publisher:
publish-pypi.yml on SUDARSHANCHAUDHARI/QACraft
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qacraft-1.4.1-py3-none-any.whl -
Subject digest:
edaac741df743d224e674dca1f5cae2fe7b6fffc0323d4004c7910d11dbf062c - Sigstore transparency entry: 2223984687
- Sigstore integration time:
-
Permalink:
SUDARSHANCHAUDHARI/QACraft@41265a89c66afe8b03420e372272f832ef8f0540 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/SUDARSHANCHAUDHARI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@41265a89c66afe8b03420e372272f832ef8f0540 -
Trigger Event:
workflow_dispatch
-
Statement type: