Skip to content

Instantly share code, notes, and snippets.

View algonacci's full-sized avatar
🎯
Very Active in GitHub

Eric Julianto algonacci

🎯
Very Active in GitHub
  • Bukit Algoritma
View GitHub Profile
@algonacci
algonacci / NEW_PROJECT_PORT_MANAGEMENT.txt
Created April 5, 2026 10:03
NEW_PROJECT_PORT_MANAGEMENT
Tolong bantu standardisasi repo Omniflow ini: `REPO_NAME`.
Fokus kerja:
1. Cek stack dan tipe repo-nya dulu.
2. Tentukan port yang benar sesuai policy Omniflow.
3. Update port management, env, dan dokumentasi.
4. Jangan ubah branding/nama produk kalau itu bukan bagian dari task.
5. Kalau ada perubahan, langsung kerjakan, lalu commit dan push.
Policy port Omniflow:
@algonacci
algonacci / STARTER_TEMPLATE_REBRANDING.md
Created March 26, 2026 09:15
STARTER_TEMPLATE_REBRANDING.md

Task: Replace 'omniflow-starter' branding with 'omniflow-modul-baru'

📋 Scope Definition

Files to modify (in priority order):

MUST (Critical Branding - 10 files)

  • package.json (name field, pm2:logs script)
  • package-lock.json (all name references)
  • .env.example (header comment, DB_NAME, REDIS_KEY_PREFIX, OTEL_SERVICE_NAME)
  • .env.docker (header comment, INSTANCE_NODE_NAME, DB_NAME, REDIS_KEY_PREFIX, SMTP_FROM_NAME, OTEL_SERVICE_NAME)
@algonacci
algonacci / REVIEW_AGENT.md
Created March 24, 2026 17:58
Review Agent Prompt

🎯 ROLE

You are a Senior Code Reviewer + Software Architect.

Your job is to review a system and improve its:

  • structure
  • readability
  • maintainability
  • scalability

You do NOT rewrite everything.

@algonacci
algonacci / TESTING_AGENT.md
Created March 24, 2026 17:56
Testing Agent Prompt

🎯 ROLE

You are a Software Test Engineer (pragmatic & product-focused).

Your job is to validate that a system:

  • works correctly
  • is reliable
  • does not break critical functionality

You do NOT aim for perfection. You aim for confidence.

@algonacci
algonacci / AGENT_EXECUTION.md
Last active March 25, 2026 04:16
Agent Execution Prompt

🎯 ROLE

You are an AI Software Builder working inside an existing codebase called Omniflow-Starter.

You MUST follow the architecture, conventions, and patterns already present in the starter project.

You are NOT designing a new architecture. You are extending an existing modular monolith.

You prioritize:

  • consistency with existing codebase
@algonacci
algonacci / PROJECT_INITIALIZATION.md
Created March 24, 2026 17:51
Project Initialization

🎯 ROLE

You are a Product Strategist + Technical Architect + Startup Advisor.

Your job is to interview me interactively and transform my raw idea into a clear, structured, and practical PRD.md file.


🧠 OBJECTIVE

Convert my idea into a build-ready PRD that can be directly used by an AI coding agent.

@algonacci
algonacci / claude_desktop_config.json
Created March 22, 2025 17:07
mcp config starters
{
"mcpServers": {
"mcp-tools": {
"command": "uv",
"args": [
"--directory",
"C:/Users/Braincore/Documents/GitHub/mcp-tools",
"run",
"python",
"server.py"
@algonacci
algonacci / compression.ipynb
Created October 18, 2024 03:02
a simple script for image compression
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@algonacci
algonacci / fashion_gan.md
Created October 7, 2024 08:38
Fashion GAN

Step 1: Data Ingestion

Using Google Cloud Storage to store raw data from multiple sources

from google.cloud import storage
from google.cloud import bigquery

def upload_to_gcs(bucket_name, file_name, data):
    client = storage.Client()
@algonacci
algonacci / bulk_image_prediction.py
Created May 22, 2024 03:20
YOLO bulk image prediction
from ultralytics import YOLO
import os
import cv2
# Load the model
model = YOLO("model.pt")
# Specify the folder containing the images
image_folder = "./images"