Set up put.io frontend repos: README/CONTRIBUTING/SECURITY, CI, package scripts, verify commands, release workflows, deploy pipelines, test harnesses, and publish/deploy flows. Use for repo setup, repo cleanup, project setup, configuring CI or deployment, or making a package/app/SDK repo documented, verifiable, and deliverable. Skip feature code, SDK API work, Vite+ migrations, and self-verification.
75
94%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
Use this as the default frontend repo shape at put.io. Package repos publish continuously. App repos deploy continuously.
VERIFY runs on pull requests and main pushes.main only, after VERIFY passes.verify entrypoint that CI calls directly.main is assumed publishable or deployable.verify CI job that runs it.verify.Inspection summary example:
repo kind: app
verify entrypoint: make verify
delivery target: TestFlight beta on main
versioning: fastlane + git tags
template gaps: missing .github/pull_request_template.mdVERIFY covers lint, typecheck, build, tests, and any package-specific guardrails..github/pull_request_template.md and .github/ISSUE_TEMPLATE/*.putio-release-bot and set commit author/committer metadata to the app bot identity.main and v* push-back needs an allowed actor that matches the token. Use a putio-release-bot installation token for release writes instead of relying on GITHUB_TOKEN or spoofing a human/team mailbox.Semantic-release example:
{
"plugins": [
["@semantic-release/commit-analyzer", { "preset": "conventionalcommits" }],
["@semantic-release/release-notes-generator", { "preset": "conventionalcommits" }]
]
}Keep review and triage prompts close to the repo instead of relying on maintainers to remember them.
N/A prompts over giant mandatory essays.CONTRIBUTING.md should summarize the expectation without copying the full checklist.docs/DISTRIBUTION.md: delivery model, publish target, protected Environment requirements, release bot identity, tag policy, and release-specific smoke checks. CONTRIBUTING.md links there as contributor navigation.