Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 1.53 KB

File metadata and controls

60 lines (38 loc) · 1.53 KB

Using Artifacts

This repository produces artifacts that can be used by both humans and AI coding agents.

Skills

Use skills when you want an assistant to repeatedly apply the same engineering judgment.

Typical use:

  1. Copy the skill directory into your assistant's skill folder.
  2. Keep the SKILL.md frontmatter intact.
  3. Invoke the skill by name or by asking for the behavior described in its description.

Good for:

  • Code review workflows
  • Performance review
  • Teaching sessions
  • AI coding guardrails

Prompts

Use prompts when you want a portable instruction that works in many chat or coding tools.

Good for:

  • One-off implementation requests
  • Asking another agent to stay grounded
  • Reviewing generated code
  • Creating consistent team prompts

Checklists

Use checklists when a human reviewer needs a compact decision aid.

Good for:

  • Pull request review
  • Architecture review
  • Pairing sessions
  • Team working agreements

Workflows

Use workflows when the process matters more than a single instruction.

Good for:

  • Adapting a new source
  • Teaching the repository method
  • Creating future cases

Recommended Start

For the first case:

  1. Read Case 001.
  2. Try llm-code-grounding-loop in a real coding task.
  3. Use agentic-grounding-checklist.md to review the output.