agentsclimarketplace

Neo agentic design

Skill Benknightdark/neo-skills/skills/neo-agentic-design

Neo Skills 是專為現代 AI Agent 設計的全方位能力擴充套件。本專案透過標準化的通訊架構,為 AI 代理安裝可插拔的「技能模組 (Skills)」,使其不僅僅是一個聊天機器人,而是能轉化為具備「感知-推理-行動」能力的多領域專家。

Install
npx -y skills add Benknightdark/neo-skills --skill neo-agentic-design

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use this skill when designing, evaluating, or implementing Agent workflows, prompt chains, routing, planning, reflection, multi-agent collaboration, memory management, or other framework-agnostic LLM orchestration patterns.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

4.7 KB, as published. Nobody here has run it

Neo Agentic Design

This skill provides architectural concepts and orchestration patterns for building LLM Agent systems. It covers 21 core design patterns categorized into four themes. The orchestration logic remains abstract and independent of specific programming languages or frameworks.

Gotchas

  • Over-engineering: Prioritize simple prompt chains (Chapter 1) or routing (Chapter 2). Use complex multi-agent collaboration (Chapter 7) or hierarchical networks only when necessary to reduce token overhead.
  • Reflection Infinite Loops: When implementing reflection (Chapter 4) or self-correction (Chapter 12), enforce a maximum iteration limit (e.g., 3-5 iterations) to prevent the LLM from getting stuck in an infinite loop.
  • Blocking Operations: High-risk operations (such as direct database deletions or large fund transfers) must include a Human-in-the-Loop review gate (Chapter 13).
  • Context Pruning State Loss: When compressing context, protect critical agent instructions from being pruned to prevent behavioral degradation.

Workflow Checklist

Progress:

  • Step 1: Analyze Requirements (define objectives, inputs, constraints, and complexity levels).
  • Step 2: Select Orchestration Patterns (load corresponding reference documents based on requirements).
  • Step 3: Plan System Components (determine memory, learning mechanisms, and protocol specifications).
  • Step 4: Define Resilience and Safety (establish exception handling, human review gates, and input/output guardrails).
  • Step 5: Draft Design Proposal (create system topology diagrams and describe the architecture).

Detailed Guidelines

Step 1 — Analyze Requirements

Evaluate problem complexity (Level 1, 2, or 3) and confirm:

  1. Latency Sensitivity: For low-latency requirements, prioritize parallelization (Chapter 3) and routing (Chapter 2).
  2. Task Fragility: For strict sequential tasks or error-prone processes, use chaining (Chapter 1) or planning (Chapter 6).

Step 2 — Load Design Patterns (Progressive Loading)

Load specific reference files as needed to avoid loading all concepts at once:

  • Base workflows (Prompt Chaining, Routing, Parallelization, Reflection, Tool Use, Planning, Multi-Agent Collaboration): 👉 Load base-workflows
  • System infrastructure (Memory Management, Learning and Adaptation, MCP, Goal Setting and Monitoring): 👉 Load system-components
  • Exception handling, HITL, RAG fact-grounding: 👉 Load resilience-hitl
  • Advanced safety, evaluation, prioritization, A2A communication, exploration and discovery: 👉 Load advanced-safety

Step 3 — System Architecture Planning

The design document must clearly document:

  1. State Space: Context window management method and division of short-term and long-term memory (cognitive/procedural memory).
  2. Tool Boundaries: Tool call schema protocols and sandbox rules.
  3. Safety Boundaries: Specific conditions for triggering human approval (HITL) or falling back to backup models.

Output Template (Agentic Architecture Design Proposal)

When presenting agent designs to users, use this template format:

# Agentic System Design Proposal: [System Name]

## 1. Executive Summary
* **Complexity Level**: [Level 1 / Level 2 / Level 3]
* **Target Objective**: [System Goal]
* **Key Constraints**: [Constraints such as latency, cost, security, etc.]

## 2. Core Orchestration Architecture
* **Selected Patterns**: [e.g., Router -> Parallel Agents -> Synthesizer]
* **Workflow Description**: [System data flow and control flow description]

### Topology Diagram (Mermaid)
```mermaid
[Mermaid diagram representing the Agent Loop / Topology]

3. Reference Patterns Applied

  • [Pattern Name] (Chapter X): [Specific application and rationale in the system]
  • [Pattern Name] (Chapter Y): [Specific application and rationale in the system]

4. Resilience, Safety & HITL Rules

  • Exception Recovery: [Handling flow for API timeouts, rate limits, and JSON formatting errors]
  • Human-in-the-Loop Gates: [Conditions triggering human review]
  • Guardrails: [Input filtering and output validation mechanisms]

5. Next Steps / Implementation Roadmap

  1. [Step 1]
  2. [Step 2]

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.