| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| quint-code-4.0.0-darwin-arm64.tar.gz | 2025-12-18 | 5.1 MB | |
| quint-code-4.0.0-linux-arm64.tar.gz | 2025-12-18 | 5.2 MB | |
| quint-code-4.0.0-linux-amd64.tar.gz | 2025-12-18 | 5.4 MB | |
| README.md | 2025-12-18 | 3.3 kB | |
| v4.0.0 source code.tar.gz | 2025-12-18 | 72.2 kB | |
| v4.0.0 source code.zip | 2025-12-18 | 129.6 kB | |
| Totals: 6 Items | 15.8 MB | 0 | |
Added
- MCP Server Architecture:
- This release introduces the MCP (Model Context Protocol) server as the core of Quint Code, replacing the previous prompt-only approach. The server provides structured tools for AI assistants to interact with the FPF knowledge base.
- The MCP server has been restructured into
cmdandinternalpackages for better organization and maintainability. - New Commands:
/q-audit: Visualize assurance tree with R-scores./q-decay: Calculate epistemic debt from expired evidence.- Command Updates:
/q-actualize: Reconcile the knowledge base with recent code changes. This command has been updated for better performance and accuracy.- Renamed Commands:
/q2-checkis now/q2-verify./q3-researchand/q3-testare consolidated into/q3-validate./q1-addhas been added for manually adding hypotheses.- SQLite Database (
quint.db): - The project now uses SQLite for deterministic FPF, ensuring consistency and reproducibility.
holonstable now includesscope,kind, andcached_r_scorecolumns to support advanced FPF features.evidencetable now includes avalid_untilcolumn for evidence decay tracking.relationstable now includes acongruence_levelcolumn for WLNK calculation.- Trust & Assurance Calculator (B.3):
- Implemented the FPF B.3 standard for calculating trust and assurance.
- Weakest Link (WLNK): R-score is now capped by the lowest-scoring dependency in the evidence chain.
- Congruence Penalty: Low-congruence relations between artifacts now reduce the overall reliability score.
- Evidence Decay: Expired evidence, as determined by the
valid_untilfield, now penalizes the R-score, introducing the concept of "epistemic debt." - Cycle Detection: The calculator now detects and flags circular dependencies in the evidence graph.
- Typed Reasoning (Kind-CAL):
- Hypotheses are now classified by
kindas eithersystem(for code and architecture) orepisteme(for knowledge and theory). - Validation logic now branches based on the hypothesis kind, allowing for more targeted and relevant analysis.
- Characteristic Space (C.16):
- Success metrics are now defined upfront, before testing, as part of the
Characteristic Space. - These metrics are measured during the induction phase (
/q3-validate). - The results are recorded in the Design Rationale Record (DRR) for full traceability.
- CI/CD:
- A new GitHub Actions workflow has been added to automate the build and release process.
- Testing:
- Added integration tests for the assurance calculator to ensure correctness and stability.
- Error Handling:
- Improved error handling to surface previously-silent errors with warnings.
Changed
- Project Directory: Renamed from
.fpfto.quint. Migration: run/q-actualizeto migrate, then delete.fpf. - Multi-platform Support:
- Installer now supports Claude Code, Cursor, Gemini CLI, and Codex CLI.
- Commands are now sourced from
src/commands/and built to platform-specific formats indist/.
Removed
- Redundant Agents: Removed legacy standalone agent files for a cleaner codebase.