โ† ะะฐะทะฐะด

Ideas Project Structure

Overview

Ideas project uses file-based storage in /home/app/ideas/ directory.

Directory Structure

/home/app/ideas/
โ”œโ”€โ”€ active/              # Active ideas (Markdown files)
โ”‚   โ”œโ”€โ”€ 001-saas-options-trading.md
โ”‚   โ”œโ”€โ”€ 002-crypto-arbitrage-bot.md
โ”‚   โ”œโ”€โ”€ 003-newsletter-service.md
โ”‚   โ”œโ”€โ”€ 004-docker-containers.md
โ”‚   โ”œโ”€โ”€ 005-telegram-alerts-bot.md
โ”‚   โ””โ”€โ”€ 006-trading-signals-aggregator.md
โ”œโ”€โ”€ archive/             # Archived ideas
โ”œโ”€โ”€ templates/           # Templates for new ideas
โ””โ”€โ”€ sync.js              # Sync script to ideas.json

File Format (Markdown)

# Title

**ID:** 001  
**Status:** proposed|approved|in-progress|done|verified  
**Priority:** low|medium|high|critical  
**ROI:** $2000/month  
**Tags:** tag1, tag2  

## Description
Description text...

## Details
Implementation details...

## Tasks
- [ ] Task 1
- [x] Task 2 (completed)

## Notes
Additional notes...

API Integration

Sync Process

  1. Dashboard reads .md files via IdeasManager
  2. Ideas displayed in KanbanModal with drag-and-drop
  3. Status changes written back to .md files
  4. sync.js updates ideas.json for compatibility

Status Flow

proposed โ†’ approved โ†’ in-progress โ†’ done โ†’ verified