acceptance-orchestrato…
Use when a coding task should be driven end-to-end from issue intake through implementation, review, deployment, and acceptance verification with minimal human…
Autonomous agents are AI systems that can independently decompose
$ npx -y skills add sinhoneyy/master-skills --skill autonomous-agents --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/autonomous-agentsContext preview
The summary Claude sees to decide when to auto-load this skill.
Autonomous agents are AI systems that can independently decompose
name: autonomous-agents description: Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it's making them reliable. Every extra decision multiplies failure probability. risk: unknown source: vibeship-spawner-skills (Apache 2.0) date_added: 2026-02-27
Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it's making them reliable. Every extra decision multiplies failure probability.
This skill covers agent loops (ReAct, Plan-Execute), goal decomposition, reflection patterns, and production reliability. Key insight: compounding error rates kill autonomous agents. A 95% success rate per step drops to 60% by step 10. Build for reliability first, autonomy second.
2025 lesson: The winners are constrained, domain-specific agents with clear boundaries, not "autonomous everything." Treat AI outputs as proposals, not truth.
Alternating reasoning and action steps
**When to use**: Interactive problem-solving, tool use, exploration
""" The ReAct loop: 1. Thought: Reason about what to do next 2. Action: Choose and execute a tool 3. Observation: Receive result 4. Repeat until goal achieved
Key: Explicit reasoning traces make debugging possible """
""" from langchain.agents import create_react_agent from langchain_openai import ChatOpenAI
react_prompt = ''' Answer the question using the following format:
Question: the input question Thought: reason about what to do Action: tool_name Action Input: input to the tool Observation: result of the action ... (repeat Thought/Action/Observation as needed) Thought: I now know the final answer Final Answer: the answer '''
agent = create_react_agent( llm=ChatOpenAI(model="gpt-4o"), tools=tools, prompt=react_prompt, )
result = agent.invoke( {"input": query}, config={"max_iterations": 10} # Prevent runaway loops ) """
""" from langgraph.prebuilt import create_react_agent from langgraph.checkpoint.postgres import PostgresSaver
checkpointer = PostgresSaver.from_conn_string( os.environ["POSTGRES_URL"] )
agent = create_react_agent( model=llm, tools=tools, checkpointer=checkpointer, # Durable state )
config = {"configurable": {"thread_id": "user-123"}} result = agent.invoke({"messages": [query]}, config) """
Separate planning phase from execution
**When to use**: Complex multi-step tasks, when full plan visibility matters
""" Two-phase approach: 1. Planning: Decompose goal into subtasks 2. Execution: Execute subtasks, potentially re-plan
Advantages:
Disadvantages:
"""
""" from langgraph.prebuilt import create_plan_and_execute_agent
planner_prompt = ''' For the given objective, create a step-by-step plan. Each step should be atomic and actionable. Format: numbered list of steps. '''
executor_prompt = ''' You are executing step {step_number} of the plan. Previous results: {previous_results} Current step: {current_step} Execute this step using available tools. '''
agent = create_plan_and_execute_agent( planner=planner_llm, executor=executor_llm, tools=tools, replan_on_error=True, # Re-plan if step fails )
config = { "configurable": { "thread_id": "task-456", }, "interrupt_before": ["execute"], # Pause before execution }
plan = agent.invoke({"objective": goal}, config)
if human_approves(plan): result = agent.invoke(None, config) # Continue from checkpoint """
"""
Unified skill library for Claude, Codex, Cursor, Antigravity & AI agents — 2,658 skills across 15 domains
Repo: sinhoneyy/master-skills
Use when a coding task should be driven end-to-end from issue intake through implementation, review, deployment, and acceptance verification with minimal human…
Find and fix WCAG 2.2 accessibility issues. Two modes — report (sweep a codebase or page, produce a prioritized written report, no edits) and fix…
Automate ActiveCampaign tasks via Rube MCP (Composio): manage contacts, tags, list subscriptions, automation enrollment, and tasks. Always search tools first…
Fetch any X/Twitter post as clean LLM-friendly JSON. Converts x.com, twitter.com, or adhx.com links into structured data with full article content, author…
This skill should be used when the user asks to "implement LLM-as-judge", "compare model outputs", "create evaluation rubrics", "mitigate evaluation bias", or…
Autonomous DevSecOps & FinOps Guardrails. Orchestrates Gemini 3 Flash to audit Linux Kernel patches, Terraform cost drifts, and K8s compliance.