@versatil/sdlc-framework
Version:
๐ AI-Native SDLC framework with 11-MCP ecosystem, RAG memory, OPERA orchestration, and 6 specialized agents achieving ZERO CONTEXT LOSS. Features complete CI/CD pipeline with 7 GitHub workflows (MCP testing, security scanning, performance benchmarking),
104 lines (76 loc) โข 2.49 kB
Markdown
# VERSATIL Basic Project Setup
This is a basic project template configured with the VERSATIL SDLC Framework and OPERA methodology.
## ๐ค Active Agents
- **๐งช Maria-QA** - Quality Assurance Lead
- **๐จ James-Frontend** - Frontend Specialist
- **โ๏ธ Marcus-Backend** - Backend Expert
## ๐ Quick Start
```bash
# Install dependencies
npm install
# Start development server
npm run dev
# Run tests
npm test
# Run quality checks
npm run maria:test
```
## ๐ Project Structure
```
versatil-basic-project/
โโโ src/
โ โโโ index.js # James-Frontend application
โโโ server.js # Marcus-Backend Express server
โโโ tests/ # Maria-QA test suites
โโโ .cursorrules # Auto-agent activation
โโโ CLAUDE.md # OPERA methodology
โโโ package.json # Dependencies & scripts
```
## ๐งช Available Commands
### Maria-QA Commands
```bash
npm run maria:test # Run all tests
npm run maria:visual # Visual regression tests
npm run maria:performance # Performance testing
npm run maria:accessibility # Accessibility audit
```
### James-Frontend Commands
```bash
npm run james:lint # Code linting & formatting
npm run james:build # Production build
npm run james:optimize # Bundle analysis
```
### Marcus-Backend Commands
```bash
npm run marcus:security # Security audit
npm run marcus:api # Start API server
npm run marcus:docker # Docker containers
```
## ๐ฏ Quality Gates
- **Test Coverage**: 80% minimum
- **Performance Score**: 90+ (Lighthouse)
- **Accessibility**: WCAG 2.1 AA compliance
- **Security**: Zero critical vulnerabilities
## ๐ง Configuration
The project is pre-configured with:
- **Testing**: Jest + Playwright
- **Linting**: ESLint + Prettier
- **Security**: Helmet + CORS
- **Performance**: Lighthouse integration
- **Accessibility**: axe-core + pa11y
## ๐ Deployment
```bash
# Build for production
npm run build
# Start production server
NODE_ENV=production npm start
```
## ๐ Learn More
- [VERSATIL Framework Documentation](../../docs/)
- [OPERA Methodology](../../CLAUDE.md)
- [Agent Reference](../../docs/agent-reference.md)
## ๐ Support
- [GitHub Issues](https://github.com/versatil-platform/versatil-sdlc-framework/issues)
- [Community Discussions](https://github.com/versatil-platform/versatil-sdlc-framework/discussions)
---
**Generated with VERSATIL SDLC Framework v1.0.0**