cobusgreyling

50 mods across 7 repositories, 11k stars between them.

goal-verifier

25

cobusgreyling/goal-engineering

Skill Claude CodeCodex

Independently verify a Grok Build goal is truly complete. Checks GOAL.md done conditions, runs tests, and returns PASS or REJECT with evidence. Use before updategoal(completed: true), when asked to "verify goal", "check if done", or as a reviewer sub-agent at the end of a goal run.

39 2mo ago A 71 tokens original MIT

cobusgreyling/goal-engineering

Instructions file CodexOpenCode

Instructions for cobusgreyling/goal-engineering, covering agents.md — goal engineering reference, project purpose, verification, goal discipline and deny list.

39 2mo ago A 401 tokens original MIT

cobusgreyling/agent-skills

Skill Claude CodeCodex

Choose the right architecture for an LLM agent or multi-agent system. Use when the user is designing, comparing, or debugging agentic workflows and mentions ReAct, Reflexion, Plan-and-Execute, Router, Supervisor, Hierarchical, multi-agent, tool-use loop, agent graph, LangGraph, AutoGen, CrewAI, or asks "which agent…

14 1mo ago A 92 tokens

agent-cost-modeling

28

cobusgreyling/agent-skills

Skill Claude CodeCodex

Model the cost of an LLM agent before it ships, and after. Use when the user is planning a deployment, comparing patterns, choosing a model tier, or justifying a budget and mentions tokens per task, cost per task, unit economics, cost ceiling, cache hit rate, ReAct cost, multi-agent cost, or asks "how much will this…

14 1mo ago A 87 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Design an evaluation harness for an LLM agent before shipping it. Use when the user is building or rewriting an agent, deciding ship/no-ship, debugging regressions, or mentions golden sets, eval suites, regression tests, trace-level evals, LLM-as-judge, scoring rubrics, or asks "how do I test this agent?" / "how do I…

14 1mo ago A 88 tokens

agent-observability

30

cobusgreyling/agent-skills

Skill Claude CodeCodex

Instrument an LLM agent so failures are diagnosable, traces are replayable, and evals can run against production data. Use when the user is moving an agent past prototype and mentions tracing, spans, OpenTelemetry, LangSmith, Langfuse, Arize, OpenLLMetry, structured logs, GenAI semantic conventions, or asks "how do I…

14 1mo ago A 92 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Manage what enters and stays in the context window — pruning, compaction, summary fidelity, ordering — so the agent stays coherent on long runs without inflating cost. Use when the user is hitting context limits, running long agentic loops, paying for full-history replays, or asks "how do I keep context manageable?" /…

14 1mo ago A 82 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Design guardrails for an LLM agent that handles user input, calls real tools, or operates in a regulated domain. Use when the user is building a user-facing agent and mentions guardrails, jailbreaks, prompt injection, content moderation, PII redaction, output validation, red-teaming, safety filters, or asks "how do I…

14 1mo ago A 92 tokens

human-in-the-loop

33

cobusgreyling/agent-skills

Skill Claude CodeCodex

Design where, when, and how a human gates, reviews, or rescues an LLM agent — without turning the agent into a button labelled "approve". Use when the user is building an agent that takes irreversible actions or operates in regulated workflows and mentions human-in-the-loop, HITL, approval gate, escalation, review…

14 1mo ago A 98 tokens

latency-budgeting

34

cobusgreyling/agent-skills

Skill Claude CodeCodex

Budget and engineer latency for an LLM agent — TTFT, tokens-per-second, tool round-trips, parallelism, streaming. Use when the user is building a user-facing or real-time agent and mentions latency, p50, p95, p99, TTFT, streaming, throughput, time-to-first-token, slow agent, or asks "why is my agent slow?" / "how do I…

14 1mo ago A 95 tokens

llm-as-judge

35

cobusgreyling/agent-skills

Skill Claude CodeCodex

Design and validate LLM-as-judge scoring — pairwise vs pointwise, bias correction, anchor calibration, and the cases where a judge is the wrong tool. Use when the user is building an eval, scoring open-ended outputs, or comparing model versions and mentions LLM-as-judge, model grader, pairwise comparison, position…

14 1mo ago A 106 tokens

memory-design

36

cobusgreyling/agent-skills

Skill Claude CodeCodex

Design memory for an LLM agent — what to keep, where to keep it, and when memory hurts more than it helps. Use when the user is adding memory to an agent and mentions short-term memory, long-term memory, episodic, semantic, conversation history, summary memory, vector memory, memory store, mem0, Letta, MemGPT, or asks…

14 1mo ago A 94 tokens

model-routing

37

cobusgreyling/agent-skills

Skill Claude CodeCodex

Pick the right model per call, not per project — route Opus/Sonnet/Haiku, GPT-5/4o/mini, Gemini Pro/Flash by task, and cut cost without losing quality. Use when the user is choosing model tiers, building a router, or debating Opus-only vs mixed-tier deployments and mentions model selection, model router, cascade…

14 1mo ago A 109 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Decide when to split work across multiple agents vs one agent with tools, and design the handoffs when you do. Use when the user is sketching a multi-agent system or debugging one, and mentions handoff, delegation, supervisor, swarm, crew, sub-agent, agent-to-agent, A2A, manager-worker, team of agents, or asks "should…

14 1mo ago A 99 tokens

prompt-caching

39

cobusgreyling/agent-skills

Skill Claude CodeCodex

Use prompt caching correctly across Anthropic, OpenAI, Bedrock, and Gemini to cut cost and latency on hot paths. Use when the user is building a production LLM app and mentions prompt caching, cache hits, cache key, cache TTL, ephemeral cache, system-prompt caching, or asks "why is my cache hit rate low?" / "should I…

14 1mo ago A 80 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Defend an LLM agent against prompt injection — direct, indirect, tool-result, and document-borne. Use when the user is building an agent that reads untrusted content (web pages, emails, documents, tool outputs) or exposes user-provided text to a downstream agent, and mentions prompt injection, indirect injection…

14 1mo ago B 108 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Decide between RAG, long-context, structured tool retrieval, and prompt-only approaches for grounding an LLM in private or fresh data. Use when the user is designing a knowledge-grounded agent or chatbot and mentions RAG, vector search, embeddings, retrieval, chunking, long context, context window, tool retrieval…

14 1mo ago A 98 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Get reliable structured output (JSON, typed objects) out of an LLM without regex repair, retry loops, or silent corruption. Use when the user is parsing model output, fighting malformed JSON, comparing JSON mode vs function calling vs structured outputs, or asks "why does the model keep breaking my schema?" / "how do…

14 1mo ago A 76 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Design retry, idempotency, timeout, and recovery behaviour for an agent's tool calls — not the schema (that's a separate skill), but the runtime semantics. Use when the user is building or debugging an agent's tool loop and mentions retries, idempotency keys, timeouts, exponential backoff, compensation, partial…

14 1mo ago A 105 tokens

cobusgreyling/agent-skills

Skill Claude CodeCodex

Design tool schemas (function-calling definitions) that LLMs can use reliably. Use when the user is defining tools for Claude, GPT, Gemini, or any function-calling agent and mentions tool definitions, function calling, JSON schema, tool descriptions, parameters, structured outputs, MCP tools, or asks "why is the model…

14 1mo ago A 85 tokens

project-auditor

46

cobusgreyling/grok-build-showcase

Skill Claude CodeCodex

Perform a thorough Grok Build readiness audit on a project directory. Detects presence and quality of AGENTS.md, .grok/skills, test setup, CI configuration, git hygiene, and ignore files. Produces a 0-100 score plus actionable recommendations. Use when asked to "audit", "gbs audit", "check grok readiness", "is this…

2 2mo ago A 101 tokens original MIT

readiness-scorer

47

cobusgreyling/grok-build-showcase

Skill Claude CodeCodex

Calculate and explain a "Grok Readiness Score" (0-100) for a project based on concrete signals: quality of AGENTS.md / project rules, quantity and validity of skills, test/CI presence, git hygiene, ignore configuration, and verification culture. Use when asked to "score", "readiness score", "grok score", "how agent…

2 2mo ago A 98 tokens original MIT

skill-crafter

48

cobusgreyling/grok-build-showcase

Skill Claude CodeCodex

Create high-quality, production-ready Grok Build skills (SKILL.md files). Generates correct YAML frontmatter (name, description with specific triggers, when-to-use, argument-hint), clear numbered steps, tool references, and principles. Use when the user says "create a skill", "write a skill for...", "gbs scaffold…

2 2mo ago A 92 tokens original MIT