pypi dailyaiagents-release-gatestdioApache-2.0updated 11d ago
Local, deterministic tools for checking AI-generated work before it is released.
What can you do with release gate?
Daily AI Agent Toolkit
Local, deterministic tools for checking AI-generated work before it is released.
The toolkit contains two Model Context Protocol (MCP) servers and six portable Agent Skills. They inspect retained artifacts, declared claim support, literal citations, completion contracts, blockers, and release receipts without calling a model, uploading files, or requiring a Daily AI Agents account.
Release status:
0.1.1patch release candidate. PyPI0.1.0is public; the patch corrects the case-sensitive MCP Registry ownership marker.
Why this exists
AI systems can produce convincing output without proving that required artifacts exist, cited text is present, or a completion contract was actually satisfied. These tools make those narrow checks repeatable and preserve uncertainty instead of silently upgrading it to success.
They deliberately do not determine broad truth, judge semantic entailment, approve a release, validate a live service, or establish legal or security compliance.
Included tools
| Component | Interface | Purpose |
|---|---|---|
| Evidence Gate | MCP server, four tools | Inspect artifacts, declared claim evidence, literal citation containment, and aggregate verification states. |
| Release Gate | MCP server, four tools | Check completion contracts, preserve requirement states, format blockers, and build retained release receipts. |
| Six Agent Skills | Portable skill directories | Reuse artifact, claim, contract, failure-state, and verification procedures with deterministic self-tests. |
Evidence Gate
verify_artifactaudit_claimsaudit_citationssummarize_verification
Release Gate
check_contractevaluate_completionformat_blockersbuild_release_receipt
Agent Skills
artifact-verifierclaim-truth-gatecompletion-contractcontract-checkerfail-loudverification-bench
Install and run
Python 3.11 or newer is required.
python -m pip install dailyaiagents-evidence-gate==0.1.1
python -m pip install dailyaiagents-release-gate==0.1.1
dailyai-evidence-gate --root /absolute/path/to/workspace
dailyai-release-gate --root /absolute/path/to/workspace
Until the packages are public, install from a clean checkout:
python -m pip install ./servers/evidence-gate ./servers/release-gate
Both servers use MCP stdio transport. A representative client configuration is:
{
"mcpServers": {
"dailyai-evidence-gate": {
"command": "dailyai-evidence-gate",
"args": ["--root", "/absolute/path/to/workspace"]
},
"dailyai-release-gate": {
"command": "dailyai-release-gate",
"args": ["--root", "/absolute/path/to/workspace"]
}
}
}
See client configuration for the supported transport boundary.
Reproduce the proof
Run the complete local gate:
bash scripts/test-all.sh
The release candidate includes:
- unit tests for both servers;
- deterministic self-tests for all six skills;
- 20 declared-outcome examples spanning all eight MCP tools;
- rooted-path and symlink-escape protections;
- clean-wheel installation and stdio tool-discovery checks;
- package-specific checksums, SBOMs, and build provenance.
See the examples, technical report, receipt schemas, release and recovery process, and local verification record. A passing local check proves only the condition and scope named in its receipt.
Architecture and security boundary
Live repository controls and current fail-closed publication gates are recorded in Repository controls.
MCP client
| stdio + structured inputs
v
Evidence Gate / Release Gate
| canonical path resolution beneath --root
v
Local retained files ---> structured status + scoped receipt
The servers do not use network access, telemetry, model inference, arbitrary shell execution, or hosted Daily AI Agents infrastructure. Inputs are treated as data rather than shell fragments. URL-only evidence remains UNVERIFIED, and literal citation containment is not semantic support.
Read SECURITY.md and the threat model before using the toolkit on sensitive work.
Project leadership
The toolkit was conceived and led by Cooper Reed, founder of Daily AI Agents LLC, with implementation, testing, release engineering, and documentation developed as a public engineering project. Public claims about the toolkit should link to reproducible checks or retained release evidence in this repository.
Contributing and support
Apache-2.0 licensed.
Install
Add release gate to your client. Pick the one you use.
claude mcp add dailyaiagents-release-gate -- uvx dailyaiagents-release-gatecodex mcp add dailyaiagents-release-gate -- uvx dailyaiagents-release-gateamp mcp add dailyaiagents-release-gate -- uvx dailyaiagents-release-gate{
"mcpServers": {
"dailyaiagents-release-gate": {
"command": "uvx",
"args": [
"dailyaiagents-release-gate"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"dailyaiagents-release-gate": {
"command": "uvx",
"args": [
"dailyaiagents-release-gate"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"dailyaiagents-release-gate","command":"uvx","args":["dailyaiagents-release-gate"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"dailyaiagents-release-gate": {
"command": "uvx",
"args": [
"dailyaiagents-release-gate"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"dailyaiagents-release-gate": {
"command": "uvx",
"args": [
"dailyaiagents-release-gate"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"dailyaiagents-release-gate": {
"command": "uvx",
"args": [
"dailyaiagents-release-gate"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"dailyaiagents-release-gate": {
"type": "local",
"command": "uvx",
"args": [
"dailyaiagents-release-gate"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"dailyaiagents-release-gate": {
"command": {
"path": "uvx",
"args": [
"dailyaiagents-release-gate"
]
}
}
}
}Add to your Zed `settings.json`.
uvx dailyaiagents-release-gateRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 3 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Aug 28, 2026 |