mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-27 23:06:54 +05:00
Added comprehensive demo project showcasing ipuaro capabilities: New Files: - examples/demo-project/: Complete TypeScript demo application - src/: User management, auth, validation, logging (336 LOC) - tests/: Vitest unit tests for UserService - Configuration: package.json, tsconfig.json, .ipuaro.json Demo Features: - UserService with CRUD operations - AuthService with login/logout/verify - Validation utilities (email, password) - Logger utility with multiple log levels - TypeScript types and interfaces - Intentional TODOs (2) and FIXMEs (1) for tool demonstration Documentation: - README.md: Detailed usage guide with example queries - EXAMPLE_CONVERSATIONS.md: Realistic conversation scenarios - Tool demonstration scenarios (bug fix, refactoring, features) - Workflow examples (security audit, optimization, code review) Updated: - packages/ipuaro/README.md: Added Quick Start section linking to examples Project Statistics: - 12 files total - 336 lines of TypeScript code - 7 source modules demonstrating various patterns - Full test coverage examples - Demonstrates all 18 tools capabilities This completes the "Examples working" requirement for v1.0.0
22 lines
366 B
JSON
22 lines
366 B
JSON
{
|
|
"redis": {
|
|
"host": "localhost",
|
|
"port": 6379
|
|
},
|
|
"llm": {
|
|
"model": "qwen2.5-coder:7b-instruct",
|
|
"temperature": 0.1
|
|
},
|
|
"project": {
|
|
"ignorePatterns": [
|
|
"node_modules",
|
|
"dist",
|
|
".git",
|
|
"*.log"
|
|
]
|
|
},
|
|
"edit": {
|
|
"autoApply": false
|
|
}
|
|
}
|