Policy names the required README sections. Five divergences:
Description first line omits the author.README.md:3-6 gives name,
category, and license but not the author. The required shape is "X is an
MIT-licensed Go web application by @sneak that...".
No Getting Started section. There is no heading by that name
anywhere and no copy-pasteable install/usage block. A reader currently
has no way to install or run the tool without reading the Makefile.
No Rationale heading. The content exists, spread across "Problem
Statement" and "Proposed Solution" (README.md:80-135), but not under
the required name.
No Design section.# Design Goals (README.md:137-144) covers
product goals, not "how is the program structured". Nothing documents the mfer/ library vs internal/cli/ vs cmd/mfer/ split.
# Authors should be # Author, with the canonical [@sneak](https://sneak.berlin) link form.
Definition of done
The first line of the README names the project, purpose, category,
license, and author, matching the policy template.
A # Getting Started section exists with a copy-pasteable block covering
install and basic usage (mfer gen, mfer check, mfer fetch).
A # Rationale section exists. Existing Problem Statement / Proposed
Solution content is consolidated under it rather than duplicated.
A # Design section exists describing the package layout: mfer/ as the
reusable library, internal/cli/ as the command implementations, internal/log/ and internal/bork/ as support, cmd/mfer/ as the
entrypoint, and where the generated protobuf code sits.
The # Authors heading is renamed # Author and uses the canonical link.
All commands shown in Getting Started are verified to actually work
against a built binary before the PR is opened.
make check passes. TODO.md updated in the same commit.
Implementation requirements
Verify every command you put in the README by running it. A Getting
Started block that has not been executed is worse than none.
The install instruction must be correct for the module path as it actually
is today. Note the module path is unsettled (#79) — do not pre-emptively
document a path that is not yet real; document what works now, and #79
will update it when the decision lands.
Do not delete the existing Problem Statement / Proposed Solution prose
wholesale. Restructure and keep the substance; the author wrote it
deliberately.
Do not touch the # TODO: Remaining Work for 1.0 section in this PR — it
is stale and is being rewritten separately in #76. Two PRs editing the
same large section will conflict.
Run make fmt so the markdown is formatted with the repo's own settings
before committing.
Commit title must end with (closes #75).
## Context
Policy names the required README sections. Five divergences:
1. **Description first line omits the author.** `README.md:3-6` gives name,
category, and license but not the author. The required shape is "X is an
MIT-licensed Go web application **by @sneak** that...".
2. **No `Getting Started` section.** There is no heading by that name
anywhere and no copy-pasteable install/usage block. A reader currently
has no way to install or run the tool without reading the Makefile.
3. **No `Rationale` heading.** The content exists, spread across "Problem
Statement" and "Proposed Solution" (`README.md:80-135`), but not under
the required name.
4. **No `Design` section.** `# Design Goals` (`README.md:137-144`) covers
product goals, not "how is the program structured". Nothing documents the
`mfer/` library vs `internal/cli/` vs `cmd/mfer/` split.
5. **`# Authors` should be `# Author`**, with the canonical
`[@sneak](https://sneak.berlin)` link form.
## Definition of done
- The first line of the README names the project, purpose, category,
license, and author, matching the policy template.
- A `# Getting Started` section exists with a copy-pasteable block covering
install and basic usage (`mfer gen`, `mfer check`, `mfer fetch`).
- A `# Rationale` section exists. Existing Problem Statement / Proposed
Solution content is consolidated under it rather than duplicated.
- A `# Design` section exists describing the package layout: `mfer/` as the
reusable library, `internal/cli/` as the command implementations,
`internal/log/` and `internal/bork/` as support, `cmd/mfer/` as the
entrypoint, and where the generated protobuf code sits.
- The `# Authors` heading is renamed `# Author` and uses the canonical link.
- All commands shown in Getting Started are verified to actually work
against a built binary before the PR is opened.
- `make check` passes. `TODO.md` updated in the same commit.
## Implementation requirements
- Verify every command you put in the README by running it. A Getting
Started block that has not been executed is worse than none.
- The install instruction must be correct for the module path as it actually
is today. Note the module path is unsettled (#79) — do not pre-emptively
document a path that is not yet real; document what works now, and #79
will update it when the decision lands.
- Do not delete the existing Problem Statement / Proposed Solution prose
wholesale. Restructure and keep the substance; the author wrote it
deliberately.
- Do not touch the `# TODO: Remaining Work for 1.0` section in this PR — it
is stale and is being rewritten separately in #76. Two PRs editing the
same large section will conflict.
- Run `make fmt` so the markdown is formatted with the repo's own settings
before committing.
- Commit title must end with ` (closes #75)`.
clawbot
added this to the 1.0.0 milestone 2026-08-09 03:42:19 +02:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Context
Policy names the required README sections. Five divergences:
README.md:3-6gives name,category, and license but not the author. The required shape is "X is an
MIT-licensed Go web application by @sneak that...".
Getting Startedsection. There is no heading by that nameanywhere and no copy-pasteable install/usage block. A reader currently
has no way to install or run the tool without reading the Makefile.
Rationaleheading. The content exists, spread across "ProblemStatement" and "Proposed Solution" (
README.md:80-135), but not underthe required name.
Designsection.# Design Goals(README.md:137-144) coversproduct goals, not "how is the program structured". Nothing documents the
mfer/library vsinternal/cli/vscmd/mfer/split.# Authorsshould be# Author, with the canonical[@sneak](https://sneak.berlin)link form.Definition of done
license, and author, matching the policy template.
# Getting Startedsection exists with a copy-pasteable block coveringinstall and basic usage (
mfer gen,mfer check,mfer fetch).# Rationalesection exists. Existing Problem Statement / ProposedSolution content is consolidated under it rather than duplicated.
# Designsection exists describing the package layout:mfer/as thereusable library,
internal/cli/as the command implementations,internal/log/andinternal/bork/as support,cmd/mfer/as theentrypoint, and where the generated protobuf code sits.
# Authorsheading is renamed# Authorand uses the canonical link.against a built binary before the PR is opened.
make checkpasses.TODO.mdupdated in the same commit.Implementation requirements
Started block that has not been executed is worse than none.
is today. Note the module path is unsettled (#79) — do not pre-emptively
document a path that is not yet real; document what works now, and #79
will update it when the decision lands.
wholesale. Restructure and keep the substance; the author wrote it
deliberately.
# TODO: Remaining Work for 1.0section in this PR — itis stale and is being rewritten separately in #76. Two PRs editing the
same large section will conflict.
make fmtso the markdown is formatted with the repo's own settingsbefore committing.
(closes #75).