Add repo scaffolding to meet repository standards

Add .gitignore, LICENSE (MIT), Makefile, Dockerfile, .dockerignore,
and pin prettier via yarn lockfile for integrity-checked markdown
formatting. Update REPO_POLICIES.md self-reference to point to this
repo. Format markdown files with prettier.
This commit is contained in:
2026-02-22 15:40:29 +01:00
parent af257bef63
commit efbac580f9
9 changed files with 189 additions and 5 deletions

View File

@@ -11,19 +11,19 @@ git clone https://github.com/sneak/prompts.git
cd prompts
```
Prompts are stored as Markdown files in the repository root. Copy or
Prompts are stored as Markdown files in the repository root. Copy or
reference them as needed in your projects.
## Rationale
LLM prompts, especially development policies, benefit from version control
and a single authoritative source. This repo provides a central place to
and a single authoritative source. This repo provides a central place to
maintain, share, and evolve prompts across projects.
## Design
The repository is a flat collection of Markdown files. Each file contains
one or more related prompts or policy documents. There is no build step or
The repository is a flat collection of Markdown files. Each file contains
one or more related prompts or policy documents. There is no build step or
runtime component; the prompts are consumed by copying them into other
projects or referencing them directly.
@@ -34,7 +34,7 @@ projects or referencing them directly.
## License
MIT. See [LICENSE](LICENSE).
MIT. See [LICENSE](LICENSE).
## Author