Skip to main content
GitHub 仓库

agentic-product-standard

agentic-product-standard 收录了来自 Moai-Team-LLC 的 14 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
14
Stars
13
更新
2026-07-21
Forks
0
职业覆盖
3 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

antipatterns-review
软件质量保证分析师与测试员

Review existing agentic code, designs, or plans through the lens of the 17 canonical antipatterns. Diagnose what's likely to fail in production. Use whenever the user asks you to review their agent code, asks "what's wrong with this design," is debugging mysterious failures, or wants a second opinion on an architecture. Also use proactively when you notice any of the 17 antipatterns in a conversation, even if the user didn't ask for review.

2026-07-21
production-readiness
软件质量保证分析师与测试员

Audit an agentic product against the 24-point Definition of Done before launch. Covers context, tools, permissions, reliability, evals, observability, security, cost, the Loop License, and measurement science (judge calibration, retrieval metrics, ground-truth provenance, drift, human oversight) — the minimum bar for production. Use whenever the user is preparing to launch / ship / deploy an agentic product, asks "is this production-ready," wants a pre-launch checklist, or is doing a code review before going live.

2026-07-21
agentic-product-architect
软件开发工程师

Master skill for building production-grade agentic products — software systems where part of the process is dynamically directed by LLMs within deterministic architecture with explicit trust boundaries. Use this skill whenever the user mentions building an agent, agentic product, agentic workflow, AI agent, multi-agent system, agent loop, agent harness, or asks how to design, architect, ship, or harden any system with LLM-driven decision-making. Also use when they reference frameworks like LangGraph, CrewAI, OpenAI Agents SDK, Claude Agent SDK, Pydantic AI, AutoGen, or when they want to add tools, memory, evals, or human-in-the-loop to an LLM system. This is the entry point — it routes to specialized sub-skills for architecture, context engineering, harness, tools/MCP, memory, durable execution, evals, framework choice, production readiness, and antipattern review.

2026-07-21
agent-builder
软件开发工程师

Build, implement, review, or harden a SINGLE production-grade agent — its contract, schemas, tools and permission tiers, durable state, guardrails, traces, and evals. Use when the user wants to create one agent (not a multi-agent product), implement an agent runner, add tools/memory/evals to an existing agent, or review whether one agent is production-ready. For multi-agent products, orchestration, or framework selection, use the agentic-product-architect skill instead. The full operational standard this skill applies is AGENT_STANDARD.md (bundled with this skill); copy-paste artifacts are in templates/.

2026-07-13
durable-execution
软件开发工程师

Make agents survive crashes, timeouts, restarts, and human waits — using Temporal, Inngest, Restate, or LangGraph's checkpointer. Cover the Workflow + Activity pattern, pause/resume semantics, retry policies, and when to retrofit (answer: before your first long-running agent goes to production). Use whenever the user mentions long-running agents, multi-hour tasks, pause/resume, retry on failure, agent crashing mid-flight, state persistence, Temporal, Inngest, Restate, or asks how to handle reliability over hours/days.

2026-07-11
reference-stack
软件开发工程师

The AgenticProduct paved road — how to stand up and wire the family's reference implementations so each surface of the standard is satisfied out of the box. Covers AgenticMind (knowledge & memory over MCP), AgenticOps (runtime & fleet operations), AgenticPerformance/APL (evals & observability over OpenTelemetry), AgenticGateway (model & cost plane — one OpenAI-compatible key, eval-sourced routing, cost circuit breakers), and AgenticAssurance/AAL (red-team security assurance). Use whenever the user asks "what should I actually use to build this", wants the batteries-included stack, wants to install or wire our tools, wants conformance without assembling every surface by hand, or mentions AgenticMind / AgenticOps / AgenticPerformance / AgenticGateway / AgenticAssurance. The standard stays vendor-neutral (Principle 2) — this is the recommended paved road, not a mandate; bring-your-own is always fine.

2026-07-11
context-engineering
软件开发工程师

Engineer what goes into the LLM context window — system prompts, retrieved docs, tool schemas, conversation history, memory, examples. Apply the four operations write/select/compress/isolate to manage context as a finite resource. Enforce the 40% rule on context utilization. Use whenever the user is designing system prompts, debugging quality degradation in long conversations, hitting context limits, managing per-step retrieval, dealing with sub-agent context isolation, or asking about "context engineering" / "prompt engineering" / CLAUDE.md / AGENTS.md / instruction files.

2026-07-11
eval-driven-dev
软件质量保证分析师与测试员

Build the evaluation discipline that separates production agentic products from demos — error analysis on real traces, the three-level eval pyramid (code assertions / LLM-as-judge / human review), binary judge outputs calibrated against human labels, and CI gates that block regression. Based on the Husain/Shankar methodology. Use whenever the user mentions evals, evaluation, LLM-as-judge, hallucination testing, regression testing for AI, quality measurement, error analysis, "how do I know if my agent works," failure modes, or grading agent outputs.

2026-07-11
harness-engineering
软件开发工程师

Design the harness — the 8-layer scaffolding around the LLM loop that makes agents reliable. Covers the agent loop itself (gather/act/verify), context management, durable execution, guardrails, human-in-the-loop, evals, observability, and the cross-cutting security & identity layer. In production agents, the harness is 98% of the code. Use whenever the user is structuring code around an agent loop, asks "how do I make this reliable / production-ready," is implementing verification, retry logic, sub-agent delegation, permission systems, approval gates, or wants to understand what makes Claude Code / Codex / Devin work beyond the model.

2026-07-11
framework-selection
软件开发工程师

Choose the right agentic framework — LangGraph, OpenAI Agents SDK, Claude Agent SDK, CrewAI, Pydantic AI, AutoGen/AG2, LlamaIndex Workflows, Semantic Kernel, Mastra, DSPy, mcp-agent — based on the team's dominant constraint, not hype. Use whenever the user asks "which framework should I use," compares any two of these, hits limits with their current framework, or is starting a new project and needs to pick the stack.

2026-07-06
memory-architecture
软件开发工程师

Choose and design long-term memory for agents — Mem0, Zep, Letta (MemGPT), LangMem, files-in-repo, or AgenticMind (the auditable, self-improving, MCP-native open-source layer; this standard's reference implementation). Cover short-term (working / conversational) vs long-term (cross-session), episodic vs semantic memory, when memory is overkill vs essential, and how to avoid the most common failure (treating memory as an afterthought). Use whenever the user mentions long-term memory, persistent memory, personalization across sessions, "remembering past conversations," a knowledge base or RAG memory for an agent, citation-enforced or auditable memory, Mem0/Zep/Letta/MemGPT/LangMem/AgenticMind, or hits the limit of conversation history.

2026-07-06
tool-design-mcp
其他计算机职业

Design tools for agents — function/tool definitions, MCP (Model Context Protocol) servers, tool routing when there are many tools, structured outputs, and the rules of thumb that prevent tool selection failures. Use whenever the user is adding tools/functions to an agent, integrating external systems, building or consuming MCP servers, hitting "the agent picks the wrong tool" failures, designing function signatures, choosing between MCP and direct function calling, or wondering how many tools is too many.

2026-06-14
tenant-isolation
软件开发工程师

Design tenant isolation for a multi-tenant agentic product so one customer can never read, retrieve, remember, or be billed for another's data. Covers the three isolation models (pooled + row-level, bridge, silo), the agent-specific leakage paths most teams miss (cross-tenant retrieval, memory, cache, trace, and model-supplied tenant_id), where tenant_id binds into the Agent Contract / permissions / memory / tools / evals, and the mandatory cross-tenant leakage eval. Use whenever the user mentions multi-tenant, multi-tenancy, tenant isolation, B2B SaaS agent, per-customer data, row-level security / RLS, data residency, "can tenant A see tenant B's data," noisy neighbor, or namespacing memory/knowledge per customer.

2026-06-01
architecture-design
软件开发工程师

Design the architecture of an agentic product — choose the autonomy level (L0–L4), compose solutions from the 5 canonical patterns (prompt chaining, routing, parallelization, orchestrator-workers, evaluator-optimizer), decide single-agent vs multi-agent, and identify the right production exemplar to model after. Use whenever the user is starting a new agentic project, restructuring an existing one, asking "what pattern should I use," debating single vs multi-agent, or trying to decide between a deterministic workflow and an autonomous agent loop.

2026-05-29