by unicodef1wn
Engineering rules for building trustworthy coding-agent workflows, inspired by Lauren Tan.
# Add to your Claude Code skills
git clone https://github.com/unicodef1wn/lauren-poteto-rulesGuides for using ai agents skills like lauren-poteto-rules.
See how lauren-poteto-rules compares with popular alternatives.
lauren-poteto-rules is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by unicodef1wn. Engineering rules for building trustworthy coding-agent workflows, inspired by Lauren Tan. It has 59 GitHub stars.
lauren-poteto-rules's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/unicodef1wn/lauren-poteto-rules" and add it to your Claude Code skills directory (see the Installation section above). lauren-poteto-rules ships a SKILL.md manifest, so compatible agents can discover and load it automatically.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh lauren-poteto-rules against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
See comparison
Engineering instructions for Grok Bot, adapted from Lauren Tan's ideas on verification, agent environments, and durable engineering judgment.
Use these rules for engineering investigation, implementation, review, and delegation. Follow the repository's instructions and the user's scope. Apply only the relevant parts: an explanation needs code evidence; a behavior change needs a running check; a typo needs a document check. Creating tooling or evaluating skills is conditional work, not a prerequisite for every task.
Make the work understandable enough to review and maintain.
Close the loop between a claim and the running system.
Give the next agent both a way to operate the app and a way to find the feature.
Agents learn from the examples they find. Today's shortcut can become tomorrow's convention.
When the same mistake can recur, improve the environment that permits it.
Choose the smallest effective mechanism:
| Failure | Useful response |
|---|---|
| An invalid state or dependency can be designed out | Constrain the architecture, API, or data model. |
| A bad pattern can be detected mechanically | Add or reuse a type, lint, compiler, or CI check. |
| A decision requires context and judgment | Write a concise project rule or review criterion. |
| The agent lacks a repeatable procedure | Capture the workflow in a skill and evaluate its behavior. |
useEffect do not establish universal bans.Make the shortest route to an implementation follow the intended design.
Apply this when creating or changing agent instructions or verification workflows.
Increase autonomy after the verification loop works reliably.
Finish with the result, checks actually performed, accessible evidence, and any material limits. Keep it proportional to the task. Distinguish observed results from hypotheses and worker-reported results from checks you performed yourself.

A portable engineering skill inspired by Lauren Tan's talks about working with coding agents.
It teaches an agent to inspect before diagnosing, verify behavior in the running product, turn repeated corrections into durable constraints, and increase autonomy only after the verification loop works.
Read the complete instructions in SKILL.md. See EXAMPLES.md for concrete failure modes and expected behavior.
Download SKILL.md, attach it to a Grok Bot conversation, and send:
Create a private skill named "Lauren Poteto Rules" from the attached SKILL.md.
Preserve its scope and instructions. Use it for engineering investigation,
implementation, review, and delegation.
After Grok Bot saves it, confirm that Lauren Poteto Rules appears under Marketplace → Your plugins → Manage plugins and skills → Private skills. Invoke it from the / menu when needed.
For a one-off task, attach SKILL.md and ask the Bot to follow it without saving a skill.
Clone the repository into Grok's personal skills directory:
mkdir -p ~/.grok/skills
git clone https://github.com/unicodef1wn/lauren-poteto-rules.git \
~/.grok/skills/lauren-poteto-rules
Start a new session and invoke /lauren-poteto-rules. To share it only inside one project, place the folder at .grok/skills/lauren-poteto-rules in that repository.
Clone it into the user skills directory:
mkdir -p ~/.agents/skills
git clone https://github.com/unicodef1wn/lauren-poteto-rules.git \
~/.agents/skills/lauren-poteto-rules
Start a new Codex session and invoke $lauren-poteto-rules. For one repository, use .agents/skills/lauren-poteto-rules instead.
Clone it into Claude Code's personal skills directory:
mkdir -p ~/.claude/skills
git clone https://github.com/unicodef1wn/lauren-poteto-rules.git \
~/.claude/skills/lauren-poteto-rules
Invoke it with /lauren-poteto-rules. For a project installation, use .claude/skills/lauren-poteto-rules.
Create a project rule with New Cursor Rule or Cursor Settings → Rules. Choose Agent Requested, use this description, and paste the body of SKILL.md:
Engineering workflow for evidence-based diagnosis, runtime verification,
durable constraints, and safe delegation.
Project rules live in .cursor/rules and can be committed with the codebase. For a simpler project-wide setup, add the instructions to the repository's root AGENTS.md.
Give the agent a bounded engineering task and the real project context:
Use Lauren Poteto Rules for this task.
Repository: <repository or working directory>
Task: <the behavior to investigate or change>
Expected result: <observable outcome>
Constraints: <scope or actions requiring approval>
A useful completion report states the result, the checks actually performed, the evidence, and anything still unverified.
Run the same tasks in fresh sessions with and without the skill. Compare actions and artifacts:
Use several runs. Judge tool calls, diffs, and evidence rather than the agent's confidence.
The engineering principles are adapted from talks by Lauren Tan (@poteto). The wording, structure, installation guide, and examples are an independent community adaptation by unicodef1wn.
Inspired by the compact packaging of andrej-karpathy-skills. This is not an official Lauren Tan, xAI, Cursor, Anthropic, or OpenAI release.