Skip to content

Instantly share code, notes, and snippets.

@mer0mingian
mer0mingian / README.md
Created April 19, 2026 16:14 — forked from ppries/README.md
Autonomous multi-agent workflow for OpenCode — plan, review, implement, PR from a Linear issue

Autonomous Multi-Agent Workflow for OpenCode

A fire-and-forget workflow that takes a Linear issue ID and autonomously plans, tests, implements, and opens a draft PR — with TDD baked in. You walk away; it notifies you when done.

Built for OpenCode using custom agents and slash commands.

Important: The /workflow command must run with agent: build (OpenCode's default agent with full tool access). The orchestrator needs unrestricted access to do git operations, dispatch subagents, and create PRs. If you're in a restricted mode, switch to build first.

Why this exists:

  • Fire and forget. Kick off a task and walk away. You get notified when it's done or needs attention.
@mer0mingian
mer0mingian / artcile.md
Created October 14, 2025 18:55 — forked from RichardHightower/artcile.md
Claude Code Agents to OpenCode Agents

Migrating AI Agents: A Systematic Approach to Cross-Platform Architecture

How systematic methodology and architectural understanding enabled the successful migration of 12 specialized AI agents between platforms, creating reusable patterns for future migrations


The Migration Challenge

Migrating AI agents between platforms isn't just a technical exercise—it's an architectural transformation. When you port agents from one system to another, you're not simply copying code; you're translating between different philosophies of agent interaction, tool management, and capability expression.

@mer0mingian
mer0mingian / testRegex.js
Created August 23, 2024 05:38
Regex for chunking by using all semantic cues
// Updated: Aug. 20, 2024
// Run: node testRegex.js whatever.txt
// Live demo: https://jina.ai/tokenizer
// LICENSE: Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0)
// COPYRIGHT: Jina AI
const fs = require('fs');
const util = require('util');
// Define variables for magic numbers
const MAX_HEADING_LENGTH = 7;
@mer0mingian
mer0mingian / tutorial_dpcca_computation.ipynb
Created September 16, 2019 06:45 — forked from jaimeide/tutorial_dpcca_computation.ipynb
Python implementation of the Detrended Partial Cross-Correlation Analysis (DPCCA) coefficient
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mer0mingian
mer0mingian / Awesome_git_cheatsheet.md
Last active September 7, 2024 09:18 — forked from karenyyng/Git_mergetool_tutorial_with_Vim.md
How to use `git mergetool` to resolve conflicts