Building on a Foundation of Trust
Welcome to the Tally Sticks Developer Portal. We are committed to building a transparent and accountable ecosystem, and we invite developers, partners, and researchers to build with us. Our core technology, the Ethically Aware Validation Engine (EAVE), is designed to be extensible and supports constitutional transparency across all government operations.
Historic Achievement: Our Contract Claim System is now operational, monitoring £110M+ daily in government spending with 91% constitutional compliance scores and 100% clean hands certification across all contract lifecycles.
🚀 Official SDK & API
Use our official Tally Sticks SDK to integrate constitutional validation directly into your applications. Built with TypeScript and designed for ease of use.
npm install @tallysticks/sdk
SDK includes constitutional validation, audit logging, and transparent API access.
📚 GitHub Repositories
Our work is open source and transparent. Review our code, track our progress, and find contribution guidelines at our official repositories.
EAVE Core Repository Tally Sticks UK ImplementationBoth repositories feature comprehensive documentation and active community contribution.
🎯 Live System Demonstrations
See our constitutional validation technology in action with live government contract monitoring and transparent audit trails.
Constitutional Dashboard (Live) Contract Claim System (Live) Interactive Demo WalkthroughReal-time constitutional validation with £110M+ daily transaction monitoring.
📖 Technical Documentation
Comprehensive guides for developers working with the EAVE and constitutional validation principles.
EAVE Technical Specification Developer Integration Guides System Architecture & IntegrityComplete documentation of our 17 constitutional principles and validation algorithms.
🔄 Development Roadmap
Follow our development journey and see what's next. Our roadmap is public to maintain transparency with our community.
View Development Updates Project GovernancePhase 1 complete: Moving toward full system activation and SDK publication.
🤝 Community & Support
Join our community of developers building constitutional technology for transparent government operations.
Developer Support Community Auditing Program Supporting the ProjectActive community with regular contributor meetups and technical discussions.
17 Constitutional Principles
All SDK integrations validate against our comprehensive constitutional framework:
Core Governance
- Claims-Based System
- Good Faith
- Constitutional Sovereignty
- Service Over Power
Transparency & Accountability
- Transparency
- Accountability
- Fiscal Accountability
- Transparent Divergence
Fairness & Access
- Equity
- Accessibility
- Inclusivity
- Data Protection
Innovation & Adaptation
- Efficiency
- Empowerment
- Innovation
- Adaptability
- Historical Precedent
Quick Integration Examples
Constitutional Validation
import { ConstitutionalValidator } from '@tallysticks/sdk';
const validator = new ConstitutionalValidator();
const result = await validator.validateConstitutionalCompliance(
contractData,
{ type: 'government-contract', department: 'NHS' }
);
console.log(`Constitutional Score: ${result.overallScore}%`);
Audit Logging
import { AuditLogger } from '@tallysticks/sdk';
const logger = new AuditLogger('my-government-app');
logger.logValidationEvent('contract-approval', validationResult);
logger.logAccountabilityEvent('decision-made', 'approver-id', 'rationale');
// Export for public transparency
const publicLogs = logger.exportForTransparency();