47thtechcorner

RayCodes PrimeAgent — Git skill for Claude Code

Git community

This Agent Beats AGI.

How to install RayCodes PrimeAgent

This entry records only its repository, not the path inside it, so there is no exact command to give. Open 47thtechcorner/RayCodes_PrimeAgent and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What RayCodes PrimeAgent does

This Agent Beats AGI? Prime Agent GitHub Tested Locally - Autonomous Recursive Multi-Agent Logic & Puzzle Solver harness inspired by Prime Intellect RLM architecture.

Alternatives in Git

README

🌐 Prime Agent Recursive Solver

[![Python Version](https://img.shields.io/badge/python-3.9%2B-10B981.svg)](https://www.python.org/) [![License](https://img.shields.io/badge/license-MIT-8B5CF6.svg)](LICENSE) [![Framework](https://img.shields.io/badge/harness-Prime%20Agent%20RLM-06B6D4.svg)](https://github.com/PrimeIntellect-ai/prime-agent)

An autonomous multi-agent logic and puzzle solver powered by the installed **Prime Agent's Recursive Language Model (RLM)** CLI harness. It demonstrates how a parent agent spawns parallel child subagents programmatically via Python function calls (`await rlm(...)`), executing parallel sub-task decomposition, constraint validation, and output synthesis directly using the installed Prime Agent harness.

🧩 Problem to be Solved

┌─────────────────────────────────────────────────────────────────────────────┐
│ 📌 Challenge: ARC-AGI 3x3 Grid Matrix Transformation                        │
├─────────────────────────────────────────────────────────────────────────────┤
│ Input Matrix State:                                                         │
│   Row 1: [ 2,  4,  8 ]   ──► Pattern: 2^1, 2^2, 2^3                       │
│   Row 2: [ 3,  9, 27 ]   ──► Pattern: 3^1, 3^2, 3^3                       │
│   Row 3: [ 4, 16,  ? ]   ──► Goal: Deduce Missing Value at Row 3 Col 3    │
├─────────────────────────────────────────────────────────────────────────────┤
│ Target Goal:                                                                │
│   1. Invoke installed Prime Agent CLI harness directly (`wsl prime-agent`)   │
│   2. Deduce mathematical invariant (Base^ColumnIndex)                       │
│   3. Validate