Experiments with Roo Code
Find a file
2025-04-02 12:08:59 +00:00
.github/workflows Update application 2025-04-01 10:48:30 +00:00
plugin logging docs + fixed generation of urls on back so we don't have to do it on front. 2025-04-02 05:00:15 +00:00
scripts now tests no longer use compose 2025-04-02 04:06:56 +00:00
src normalized highlights 2025-04-02 12:08:59 +00:00
test_data fix indexing for cyrillc 2025-04-02 05:56:19 +00:00
tests/unit fixed tests 2025-04-02 03:57:52 +00:00
.env.example fix for elastic username/pass 2025-04-02 09:09:14 +00:00
.gitignore chore: update .gitignore to include test_venv and .env 2025-04-02 02:59:56 +00:00
__init__.py initial commit 2025-03-31 22:18:41 +06:00
ai.md Update application 2025-04-01 10:48:30 +00:00
docker-compose.yml fix for elastic username/pass 2025-04-02 09:09:14 +00:00
Dockerfile fixed running of actual app 2025-04-02 04:16:34 +00:00
dummy.txt initial commit 2025-03-31 22:18:41 +06:00
extract_text_oldnew.py fix indexing for cyrillc 2025-04-02 05:56:19 +00:00
readme.md redeploy 2025-04-02 06:07:23 +00:00
redeploy.sh normalized highlights 2025-04-02 12:08:59 +00:00
roocodetest.code-workspace Update application 2025-04-01 10:48:30 +00:00
test.sh fixed tests 2025-04-02 03:57:52 +00:00

What it IS?

A plugin for TypeMind that mimics the WebSearch feature but focuses on retrieving books/documents. Users can query, e.g., "Find me books about Hecate", and the plugin returns clickable links to relevant files (EPUB, PDF, TXT) and server-side support code to use it

Features

  • File Formats: Supports EPUB, PDF, and TXT (assumed compatibility).
  • Requirement: Users must provide their own files for indexing.

Technical Context

  • Language: Python.
  • Skill Level:
    • My Python knowledge is extremely rusty (last project: a not too simple game bot years ago).
    • Self-assessment: Python novice.
  • Tools Used:
    • Sonnet 3.7 and DeepSeek-V3-0324 (for AI/ML integration).
    • RooCode

Purpose

  1. Experiment: Test RooCodes capabilities and identify practical applications.
  2. Non-Production: ⚠️ Do NOT deploy this in production (even if "fixed" by someone).

Key Notes

  • Humor/self-deprecation preserved (e.g., "extremely rusty," "novice").
  • Technical terms standardized (Sonnet 3.7, DeepSeek-V3-0324).
  • Critical warnings emphasized (bold + emoji for production risk).

Application Deployment Guide (Ubuntu LTS)

Prerequisites

System Requirements

  • Ubuntu 22.04 LTS (64-bit)
  • Minimum 2 CPU cores, 4GB RAM
  • 20GB free disk space
  • Open ports: 8000 (app), 9200 (Elasticsearch)

Required Software

# Update package lists
sudo apt update

# Install Docker and Docker Compose
sudo apt install -y docker.io docker-compose
sudo systemctl enable --now docker

# Add current user to docker group (logout required)
sudo usermod -aG docker $USER

Environment Configuration

  1. Clone the repository:
git clone https://github.com/intari/roocodetests_1.git
cd roocodetests_1
  1. Configure environment variables:
# Copy example .env file
cp .env.example .env

# Edit configuration (nano/vim)
nano .env

Key variables to configure:

  • BASE_URL: Public URL of your application
  • ELASTICSEARCH_PASSWORD: Secure password for Elasticsearch
  • CPU_LIMIT: CPU cores to allocate (default: 2)

Application Deployment

  1. Start all services:
docker-compose up -d
  1. Verify services are running:
docker-compose ps
  1. Check application logs:
docker-compose logs -f api
  1. Access the application:

Maintenance

restart & rebuild

docker-compose down && docker-compose up -d --build
docker-compose down && docker-compose up -d --force-recreate --build 

docker-compose up --force-recreate --build

Logs (app)

 docker logs booksearch_app  -f

Logs (elasticsearch)

 docker logs booksearch_elastic  -f

Logs (both)

 docker-compose logs -f

Log Rotation

Configure Docker log rotation in /etc/docker/daemon.json:

{
  "log-driver": "json-file",
  "log-opts": {
    "max-size": "10m",
    "max-file": "3"
  }
}

Then restart Docker:

sudo systemctl restart docker

Backups

  1. Create backup script (/usr/local/bin/backup-app.sh):
#!/bin/bash
BACKUP_DIR=/var/backups/app
mkdir -p $BACKUP_DIR
docker-compose exec -T elasticsearch curl -X POST "localhost:9200/_snapshot/backup_repo/_all" -H "Content-Type: application/json"
docker-compose exec -T elasticsearch curl -X GET "localhost:9200/_snapshot/backup_repo/snapshot_$(date +%Y-%m-%d)?pretty"
  1. Make executable and schedule daily cron job:
sudo chmod +x /usr/local/bin/backup-app.sh
sudo crontab -e
# Add: 0 3 * * * /usr/local/bin/backup-app.sh

Updates

  1. Pull latest changes:
git pull origin main
  1. Rebuild containers:
docker-compose up -d --build

Running in dev

  • tests
./scripts/run_tests.sh
  • app (and not deteach)
docker-compose up --build

Troubleshooting

Common Issues

Application not starting:

# Check container status
docker ps -a

# View logs
docker-compose logs api

Elasticsearch health issues:

# Check cluster health
curl -X GET "localhost:9200/_cluster/health?pretty"

# Check node stats
curl -X GET "localhost:9200/_nodes/stats?pretty"

Port conflicts:

# Check used ports
sudo netstat -tulnp

# Change ports in docker-compose.yml if needed

Debugging

  1. Access running container shell:
docker-compose exec api bash
  1. Check resource usage:
docker stats

Check Request via JSON :

curl -H "Accept: application/json" -X GET https://booksearch.yourdomain.com/search?query=android

Simple search

curl -H "Accept: application/json" "https://booksearch.yourdomain.com/search?query=android"

Search with format parameter

curl "https://booksearch.yourdomain.com/search?query=android&format=json"

Error case

curl -H "Accept: application/json" "https://booksearch.yourdomain.com/search"

API Endpoints

Search API

GET /search?query={query}[&format=json]

Reset Elasticsearch Index

POST /reset_index
Headers:
- Authorization: Basic base64(username:password)

Example:

curl -X POST -u admin:securepassword123 https://booksearch.yourdomain.com/reset_index

References

Plugin-alt

method:get https://booksearch.yourdomain.com/search?query={prompt}&format=json alt version for plugin request headers { "Accept": "application/json" }