Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
61e444f
docs(task-manager): added comprehensive atomic implementation plan foโ€ฆ
Jun 13, 2025
ae0b65f
test(task-manager): added comprehensive integration and scenario tests
Jun 13, 2025
fa46434
config(testing): updated vitest configuration for comprehensive test โ€ฆ
Jun 13, 2025
ad7b937
feat(task-manager): enhanced core services with improved algorithms aโ€ฆ
Jun 13, 2025
d6b4fd2
feat(task-manager): improved CLI commands and integration services
Jun 13, 2025
ed32a59
feat(core): updated main entry points with enhanced task manager inteโ€ฆ
Jun 13, 2025
abb1017
feat(context-curator): enhanced context curator with improved type deโ€ฆ
Jun 13, 2025
bde85ae
docs(system): updated system instructions with comprehensive vibe tasโ€ฆ
Jun 13, 2025
0c37cfc
feat(config): enhanced LLM configuration with complete operation coveโ€ฆ
Jun 16, 2025
0f41027
docs(system): updated system instructions to reflect current project โ€ฆ
Jun 16, 2025
fb61c9f
feat(config): enhanced project configuration and infrastructure
Jun 16, 2025
d80a057
docs(setup): updated documentation and setup scripts
Jun 16, 2025
79fca27
feat(transport): enhanced transport layer and core services
Jun 16, 2025
cbad402
feat(agents): enhanced agent coordination and task management
Jun 16, 2025
fe41df6
feat(task-manager): comprehensive vibe task manager implementation
Jun 16, 2025
2c27ada
feat(task-manager): enhanced NLP, CLI, and security features
Jun 16, 2025
c7bdfbe
feat(utils): added dynamic port allocation utility
Jun 16, 2025
c1e76e1
cleanup: removed obsolete implementation plan files
Jun 16, 2025
f1eb0e8
docs: update vibe task manager documentation with latest features
Jun 17, 2025
55162a0
config: update vibe task manager configuration and setup scripts
Jun 17, 2025
3475183
feat: comprehensive vibe task manager enhancements and fixes
Jun 17, 2025
e2f9841
feat: enhance agent coordination and code analysis tools
Jun 17, 2025
7254a9f
feat: add comprehensive utility services and testing infrastructure
Jun 17, 2025
09a6aef
Major improvements, code structure, consolidated files, fixed many erโ€ฆ
evx2 Jun 28, 2025
81eb273
Minor bugfixes
evx2 Jun 28, 2025
ff143ff
Updated readme
evx2 Jun 28, 2025
9fca2fc
Critical bugfix: solved infinite loop on map-codebase
evx2 Jun 28, 2025
b7bce48
Updated debug_readme
evx2 Jun 28, 2025
f29fe70
Updated version to 2.5.1
evx2 Jun 28, 2025
d70fdf4
fix(custom-models): major revision - fix critical issues enabling freโ€ฆ
evx2 Jun 29, 2025
9483c81
fix(path-validation): resolve issues especially affecting vibe-task-mโ€ฆ
evx2 Jun 29, 2025
8e9d228
fix(models): mass replace default models to resolve free models issues
evx2 Jun 29, 2025
4f15062
fix(code-map-generator): partial fix for infinite loop issue
evx2 Jun 29, 2025
4ffe319
fix(path-validation): cross-platform fixes for vibe-task-manager and โ€ฆ
evx2 Jun 29, 2025
0c804aa
fix(config): updated config, organized debug, bugfixes
evx2 Jun 29, 2025
b773efa
fix(core): removed hardcoded names and fixed bugs
evx2 Jun 29, 2025
9b760df
fix(core): removed hardcoded names and fixed bugs
evx2 Jun 29, 2025
c83bd3b
fix(fix(vibe-task-manager): fix build by resolving dependency conflicts
evx2 Jun 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,23 @@ OPENROUTER_API_KEY=YOUR_OPENROUTER_API_KEY_HERE
# OpenRouter Base URL (default: https://openrouter.ai/api/v1)
# OPENROUTER_BASE_URL="https://openrouter.ai/api/v1"

# Default Model (fallback when no specific model mapping found)
# Best free reasoning model for general tasks
# DEFAULT_MODEL="deepseek/deepseek-r1-0528-qwen3-8b:free"

# Preferred models for different tasks
# GEMINI_MODEL="google/gemini-2.5-flash-preview-05-20"
# PERPLEXITY_MODEL="perplexity/sonar-deep-research"

# =============================================================================
# FULLSTACK STARTER KIT CONFIGURATION
# =============================================================================

# Enable paid research for Fullstack Starter Kit (requires paid model)
# When true: Uses research API to provide comprehensive tech stack recommendations (PAID)
# When false: Uses free LLM models for basic starter kit generation (FREE)
# Default: false (FREE mode)
# VIBE_FULLSTACK_PAID_RESEARCH="false"

# =============================================================================
# SERVER CONFIGURATION
# =============================================================================
Expand All @@ -36,6 +49,9 @@ OPENROUTER_API_KEY=YOUR_OPENROUTER_API_KEY_HERE
# SSE Server Port (default: 3000)
# SSE_PORT=3000

# HTTP Agent Port (default: 3011)
# HTTP_AGENT_PORT=3011

# =============================================================================
# DIRECTORY CONFIGURATION
# =============================================================================
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ test/
*/__tests__/
*/tests/
*/__integration__/
tests/

# IDE - VSCode
.vscode/*
Expand Down
912 changes: 154 additions & 758 deletions README.md

Large diffs are not rendered by default.

395 changes: 378 additions & 17 deletions VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md

Large diffs are not rendered by default.

Loading