Open Growth Loop
One evidence-backed maintainer action, without another noisy bot.
Open Growth Loop answers one question for maintainers: what deserves attention next, and what evidence supports it?
Point it at any repository and it combines repository hygiene with local Git state into one maintainer brief. It can preview safe scaffolds for mechanical gaps, hand judgment-heavy work to an agent, and defer to real issue or pull-request demand when the local repository already looks healthy. Local-only mode needs no account or API key and sends nothing away; an explicit --github owner/repo flag can add a bounded, read-only snapshot through the authenticated GitHub CLI.
Quickstart
pip install git+https://github.com/R3ijar/open-growth-loop
ogl audit --workspace path/to/your-repo
ogl steward --workspace path/to/your-repo
ogl steward --workspace path/to/your-repo --no-write # read-only JSON decision
ogl steward --workspace path/to/your-repo --github owner/repo # opt-in live public evidence
Thirty seconds later, outbox/audit/latest-audit.md holds a scorecard over 14 hygiene checks — README quality, license, install and quickstart onboarding, docs, examples, community files, changelog, CI, and release-tag cadence:
| Check | Category | Status | Detail |
|---|---|---|---|
| README | essentials | PASS | README is present with enough content to evaluate the project. |
| License | essentials | PASS | A license file is present. |
| Quickstart | onboarding | WARN | README has no usage section with a copy-pasteable example. |
| Continuous integration | automation | WARN | No CI configuration was found; contributors cannot see whether tests pass. |
| Release tags | release | PASS | Latest tag is v1.3.0. |
...plus nine more checks, and then the part that matters:
| Field | Value |
|---|---|
| Action | Add a Quickstart section with one runnable example and its expected output. |
| Why now | README has no usage section with a copy-pasteable example. |
| Confidence | medium |
Every audit recommends exactly one next action, ordered by how much each gap hurts a new visitor, with a step checklist and a Codex-ready prompt — so the next focused change is one paste away. Reports stay local; add outbox/ to your .gitignore if you don't want to keep them.
And when the gap is mechanical, you don't even have to write the file:
ogl fix --workspace path/to/your-repo # scaffold the recommended action
ogl fix --workspace path/to/your-repo --license mit # licenses need an explicit choice
ogl fix scaffolds missing community files, changelogs, licenses, issue/PR templates, and an ecosystem-detected starter CI workflow — with TODO markers, never overwriting anything. Checks that need real judgment (README content, docs, quickstart) hand you the Codex prompt instead. A bare repository typically goes from 0% to ~70% with fixes alone; the rest is writing worth doing yourself.
Use It With Codex
The repository includes an installable repo-steward skill. It tells Codex to begin with local evidence, check live maintainer demand when available, choose exactly one bounded action, and keep pushes, releases, merges, comments, and other remote mutations behind explicit approval.
Invoke it with a request such as:
Use $repo-steward to inspect this repository and complete the safest evidence-backed maintainer action.
The skill uses ogl steward as its evidence packet and can opt in to --github owner/repo when current public issues, pull requests, CI runs, and releases should influence the decision. All GitHub commands are reads; the CLI remains useful without an agent or network access.
Maintainer Field Test
Open Growth Loop needs counterexamples more than endorsements. If you maintain a public repository, run ogl steward --no-write and tell us where its selected action was wrong. The 20-minute field test has a structured feedback form and does not require a call or ongoing commitment.
Use It As A GitHub Action
Add one workflow file and the audit runs on every push, straight into the Actions job summary:
name: Repository Audit
on:
push:
branches: [main]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: R3ijar/open-growth-loop@main
The action exposes ok and score-percent outputs and an optional strict gate that fails the job when README or LICENSE is missing. Full reference: docs/GITHUB_ACTION.md. This repository runs it on itself.
The Full Loop
The audit covers hygiene; the loop plans from evidence. Drop privacy-safe CSV exports into data/ — Search Console rows, aggregate event counts (date,asset,event,count only), a content inventory, an experiment ledger — and Open Growth Loop turns them into one conservative daily action:
ogl init --workspace . # create the data files
ogl validate --workspace . # schema and privacy-safe header checks
ogl plan --workspace . # one action, fully explained
{
"action_type": "release_evidence",
"asset": "/guides/configuration-checklist",
"confidence": "high",
"reason": "Staged work should be proven public before creating another asset."
}
Each plan ships with a decision trace (what won, what lost and why, which thresholds applied) and a data freshness report (whether the inputs deserve trust). Completed work and its later outcomes feed back into ranking, so the loop learns locally. Browse real generated reports in the report gallery.
Planner Engine Coverage
Candidates are ranked across the maintainer surfaces that shape OSS adoption, in deliberately conservative priority order:
- Release evidence — prove staged docs, examples, or package pages are actually public before starting anything new.
- Outcome memory — record what happened to completed work before repeating it.
- Funnel dropoff — public pages with enough views but weak install, try, or next-step clicks.
- Search opportunities — near-ranking pages and low-CTR queries from Search Console exports.
- Planned assets — the next queued guide or page, only when stronger signals are absent.
Weak evidence is labeled insufficient instead of being spun into a win. The goal is less thrash, not a content treadmill.
Commands
| Command | What it does |
|---|---|
ogl audit |
Zero-config repository readiness scorecard with one recommended action. |
ogl steward |
Combine the audit, local Git state, and optional read-only GitHub evidence into one maintainer brief. |
ogl fix |
Scaffold the recommended action when it is mechanical; hand off a Codex prompt when it is not. |
ogl init / ogl validate |
Create and check the local data CSVs. |
ogl doctor |
One-shot readiness report across validation, freshness, privacy, planning, and release review. |
ogl demo |
Generate the complete report set in one run. |
ogl freshness |
Warn when local inputs are too stale to trust. |
ogl candidates / ogl plan |
Rank every considered action; select one with a full decision trace. |
ogl prompt / ogl issue-drafts |
Turn the plan into a Codex-ready prompt or a reviewable issue draft. |
ogl complete / ogl outcome |
Record what was done and what happened, so ranking learns locally. |
ogl track-experiment / ogl ship / ogl review-experiments |
Baseline, ship, and conservatively review changes. |
ogl weekly-review / ogl query-backlog / ogl report-index |
Operating summaries and the report front page. |
ogl privacy-scan |
Check local files for private-data leakage before sharing. |
Full walkthroughs, data schemas, thresholds, and column aliases live in the usage guide.
Privacy Boundary
Open Growth Loop is designed around aggregate inputs. The event importer accepts only date,asset,event,count and rejects private-looking columns such as email, user, session, ip, payload, token, or secret. Local-only commands never upload analytics or project files. The optional steward --github owner/repo adapter calls gh only for repository metadata and never writes, comments, labels, merges, closes, or publishes. The project never claims a change worked from tiny samples or missing artifacts.
Documentation
- Usage guide — installation, every command, data files, configuration, and decision rules.
- GitHub Action reference — inputs, outputs, strict mode, and scheduled audits.
- Example workflow — a full walkthrough with the bundled sample CSVs.
- Report gallery — what the generated reports look like.
- Runnable examples — five synthetic workspaces with documented expected plans.
- Dogfooding — how this repository maintains itself with its own loop.
- Public compatibility study — a transparent ten-repository run, including two defects it exposed and the limits of the evidence.
- Adoption and design partners — run a field test and share verifiable feedback.
- Releasing — the tag-driven PyPI release process.
- Roadmap and Changelog.
Project Status
Version on main: v0.2.0. See GitHub Releases for the latest published version. The project is early and is actively seeking maintainer design partners. The zero-config audit, steward brief, fix scaffolds, and GitHub Action are ready for field testing; the CSV-driven loop remains available for small maintainer workflows.
Contributing
Issues and pull requests are welcome — CONTRIBUTING.md covers setup and expectations, and docs/NEXT_ISSUES.md lists good starting points. Please keep private product data and unverifiable adoption claims out of examples and docs; ogl privacy-scan and the release-brief guardrails exist for exactly that.
Open Growth Loop is maintained by @R3ijar, who owns scope, releases, and final review. See the design-partner outreach playbook for the public feedback process.
License
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file open_growth_loop-0.2.1.tar.gz.
File metadata
- Download URL: open_growth_loop-0.2.1.tar.gz
- Upload date:
- Size: 89.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3d7da5b3ffe2550b68d52ac8e161809d371a5d289138a9c791c5b4cd529437e
|
|
| MD5 |
d608e0c9f906662a2a131478be40ef5d
|
|
| BLAKE2b-256 |
6bca859f5f3d53622817b591d0ead7c0b9fea0d1e0cc54fc756f406cbd1dbe30
|
Provenance
The following attestation bundles were made for open_growth_loop-0.2.1.tar.gz:
Publisher:
release.yml on R3ijar/open-growth-loop
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
open_growth_loop-0.2.1.tar.gz -
Subject digest:
c3d7da5b3ffe2550b68d52ac8e161809d371a5d289138a9c791c5b4cd529437e - Sigstore transparency entry: 2445184428
- Sigstore integration time:
-
Permalink:
R3ijar/open-growth-loop@869745b7fb7afa00900a895bb64f0c0b38166887 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/R3ijar
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@869745b7fb7afa00900a895bb64f0c0b38166887 -
Trigger Event:
push
-
Statement type:
File details
Details for the file open_growth_loop-0.2.1-py3-none-any.whl.
File metadata
- Download URL: open_growth_loop-0.2.1-py3-none-any.whl
- Upload date:
- Size: 86.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d6d4220c9d2d05daf8d889062cb15bb26c68cd7fadad06fd955f511c6236833
|
|
| MD5 |
a163e91f31d063e6a26ef39fc9f5539a
|
|
| BLAKE2b-256 |
ba03feed07d055f1c5e5c291a27b720000ecf749a3d1912dbe367188319479df
|
Provenance
The following attestation bundles were made for open_growth_loop-0.2.1-py3-none-any.whl:
Publisher:
release.yml on R3ijar/open-growth-loop
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
open_growth_loop-0.2.1-py3-none-any.whl -
Subject digest:
4d6d4220c9d2d05daf8d889062cb15bb26c68cd7fadad06fd955f511c6236833 - Sigstore transparency entry: 2445184635
- Sigstore integration time:
-
Permalink:
R3ijar/open-growth-loop@869745b7fb7afa00900a895bb64f0c0b38166887 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/R3ijar
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@869745b7fb7afa00900a895bb64f0c0b38166887 -
Trigger Event:
push
-
Statement type: