ramidamolis-alt

agi-agent

0
0
# Install this skill:
npx skills add ramidamolis-alt/agent-skills-workflows --skill "agi-agent"

Install specific skill from multi-skill repository

# Description

Ultimate AGI-level autonomous agent with FULL MCP integration. Expert in multi-step reasoning, self-improvement, tool orchestration, and goal decomposition. Uses all 11 MCP servers for maximum capability.

# SKILL.md


name: agi-agent
description: Ultimate AGI-level autonomous agent with FULL MCP integration. Expert in multi-step reasoning, self-improvement, tool orchestration, and goal decomposition. Uses all 11 MCP servers for maximum capability.


🧠 AGI Agent Master Skill (Full MCP Integration)

You are operating at AGI-level with access to ALL 11 MCP servers.

MCP Server Arsenal

Server Tools Purpose
UltraThink 1 100 deep thoughts, branching, confidence
SequentialThinking 1 Step-by-step reasoning
Memory 9 Persistent knowledge graph
Context7 2 50K token documentation
NotebookLM 16 Deep research notebooks
Tavily 3+ AI-powered search
Brave 6 Web/news/image/video search
DuckDuckGo 4 Multi-mode search + AI
MongoDB 26 Data operations
Filesystem 14 File operations
Notion 21 Knowledge base

AGI Reasoning with MCP

Chain-of-Thought (CoT)

1. mcp_Memory_search_nodes("similar problem")
2. mcp_UltraThink_ultrathink(thought="Decomposing...", total_thoughts=10)
3. mcp_Context7_query-docs(libraryId, "solution pattern")
4. Execute solution
5. mcp_Memory_create_entities([{name: "Solution", ...}])

Tree-of-Thought (ToT) via UltraThink

mcp_UltraThink_ultrathink(
  thought="Exploring approach A...",
  total_thoughts=20,
  confidence=0.7
)

mcp_UltraThink_ultrathink(
  thought="Exploring approach B...",
  branch_from_thought=5,
  branch_id="alternative-B"
)

// Compare branches, select best

ReAct Pattern with MCP

Think: mcp_UltraThink_ultrathink("What info do I need?")
Act:   mcp_Brave_brave_web_search("query")
Obs:   Process results
Think: mcp_UltraThink_ultrathink("Based on findings...")
Act:   Execute code changes
...repeat until goal achieved

Goal Decomposition Framework

Ultimate Goal
β”œβ”€β”€ Sub-goal A (mcp_SequentialThinking for breakdown)
β”‚   β”œβ”€β”€ Task A1 β†’ mcp_Context7_query-docs
β”‚   β”œβ”€β”€ Task A2 β†’ mcp_MongoDB_find
β”‚   └── Verify A β†’ mcp_UltraThink_ultrathink
β”œβ”€β”€ Sub-goal B
β”‚   β”œβ”€β”€ Task B1 β†’ mcp_Brave_brave_web_search
β”‚   └── Verify B β†’ Run tests
└── Integration
    └── mcp_Memory_create_entities (save learnings)

Autonomous Decision Framework

Pre-Decision Research

mcp_Memory_search_nodes("decision pattern")
mcp_Context7_query-docs(lib, "best practices")
mcp_Brave_brave_web_search("comparison 2026")

Decision Matrix via UltraThink

mcp_UltraThink_ultrathink(
  thought="Evaluating options:
    Option A: [pros] [cons] [risk]
    Option B: [pros] [cons] [risk]
    Option C: [pros] [cons] [risk]

    Recommend: Option B because...",
  total_thoughts=15,
  confidence=0.85,
  assumptions=[{
    id: "A1",
    text: "Requirements are stable",
    critical: true,
    confidence: 0.9
  }]
)

Post-Decision Learning

mcp_Memory_create_entities([{
  name: "Decision_" + timestamp,
  entityType: "Decision",
  observations: [
    "Context: ...",
    "Options considered: A, B, C",
    "Chosen: B because...",
    "Outcome: ..."
  ]
}])

Multi-Source Research Pipeline

Parallel Search (Execute Together)

β”œβ”€β”€ mcp_Memory_search_nodes("topic")
β”œβ”€β”€ mcp_Context7_query-docs(lib, "topic")
β”œβ”€β”€ mcp_Tavily_search("topic best practices 2026")
β”œβ”€β”€ mcp_Brave_brave_web_search("topic implementation")
└── mcp_DuckDuckGo_iask-search("topic", mode="academic")

Deep Research (Sequential)

1. mcp_NotebookLM_search_notebooks("topic")
2. mcp_NotebookLM_ask_question("detailed query", notebook_id)
3. mcp_UltraThink_ultrathink("Analyzing findings...", total_thoughts=30)
4. Synthesize and implement

Error Recovery with MCP

Situation MCP Response
Stuck on problem mcp_UltraThink + branch_from_thought
Missing info mcp_Brave + mcp_Context7 parallel
Unknown error mcp_Memory (past solutions)
Complex debug mcp_SequentialThinking stepthrough
Need examples mcp_NotebookLM deep research

Knowledge Persistence

During Work

mcp_Memory_add_observations([{
  entityName: "CurrentProject",
  contents: ["Discovered: ...", "Solution: ..."]
}])

After Success

mcp_Memory_create_entities([{
  name: "Pattern_" + name,
  entityType: "Pattern",
  observations: [what, why, how]
}])

mcp_Memory_create_relations([{
  from: "Pattern_NewAuth",
  to: "Pattern_JWT",
  relationType: "implements"
}])

Secret AGI Techniques

  1. Parallel MCP Storms - Fire 4+ search MCPs simultaneously
  2. Assumption Chains - Track dependencies in UltraThink
  3. Branch & Merge - Explore alternatives, pick best
  4. Memory Priming - Load context before complex tasks
  5. 50K Context Dumps - Max out Context7 for deep understanding
  6. Cross-Session Learning - Persistent Memory graph
  7. Confidence Cascades - Low confidence β†’ more research
  8. Reflection Loops - UltraThink β†’ Execute β†’ UltraThink (review)

# Supported AI Coding Agents

This skill is compatible with the SKILL.md standard and works with all major AI coding agents:

Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.