Add the org profile README that actually renders - #3
Merged
Conversation
github.com/usestring showed no README because an org profile can only come from a repo named `.github` at `profile/README.md`. This repo was named `.usestring` — the user-profile convention (repo == username) misapplied to an org, which GitHub gives no special treatment. Renamed to `.github` and added the profile page. Content is sourced, not inferred: the /v1/fetch quickstart from portal docs, the benchmark table from web-data-frontier-benchmark's official 2026-07-15 run, and the five public repos from their own READMEs. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why:
github.com/usestringrenders no README at all, and couldn't. GitHub builds an org profile only from a repo named exactly.github, at exactlyprofile/README.md— and no such repo existed..usestringwas the user-profile convention (repo name == username) misapplied to an org, where GitHub gives it no special treatment, so the org's Overview tab has been blank since the org was created.Copilot PR #1 tried to fill that gap and would have made things worse. It hallucinated the company's positioning from the org name — "an organization focused on building tools and libraries for string manipulation, processing, and utilities," with a mission to ship "string utilities across different programming languages" — and wrote it to the path that renders nowhere. Closed rather than salvaged: the premise was wrong, not the wording.
What changed:
.usestring→.githubso a profile can render at all. This is also GitHub's canonical home for org-wide community-health defaults (CONTRIBUTING.md,SECURITY.md,ISSUE_TEMPLATE/), and it carries the existing S-125938 gitleaks baseline along untouched. Old/.usestringURLs redirect automatically. Workflows inside a.githubrepo do not propagate to other repos, so there are no CI side effects — the gitleaks workflow keeps running on this repo only, exactly as before.profile/README.md— the actual landing page: positioning, the/v1/fetchquickstart, MCP setup both local and hosted, the five public repos with what each is genuinely for, and the Web Data Frontier Benchmark top five.README.md, which was the bare string# .usestring, to document what the repo holds and why the name is load-bearing — so nobody renames it back.Considered and rejected: creating a new
.githubrepo and leaving.usestringin place. That works, but leaves a stub repo whose name implies a profile role it does not have, which is what caused this confusion in the first place.Every claim is sourced, not inferred — the failure mode of PR #1:
POST https://request.usestring.ai/v1/fetch, Bearer auth,format: markdownnpx @usestring/mcp,mcp.usestring.ai/KEY/v1/mcpweb-data-frontier-benchmarkofficial run2026-07-15/careersDeliberately not included: Composer, which the site lists as unshipped ("waitlist open"), and the private repos.
Test plan
profile/README.mdthrough GitHub's ownPOST /markdownAPI (mode: gfm) and inspected the HTML: both tables become<markdown-accessiblity-table>, all fivealign="center"blocks hold, both shell fences gethighlight-source-shellwith$STRING_API_KEYand the single-quoted JSON body intact, and zero raw pipe-row syntax leaks.github.com/usestring/*repos exist and are public;/careersreturns a real page ("Open roles at String");/blog/web-scraping-benchmark-problemis the URL the benchmark repo's own README points at.portal.usestring.ai/sign-uploads its page shell — the form itself is client-rendered by Clerk, so text extraction sees only the marketing panel. Link is taken from the homepage's own CTA rather than guessed..github+profile/README.mdis the required combination, and that a public repo is required for a public profile.github.com/usestring(profile READMEs only render from the default branch).On UI evidence: this is a GitHub-rendered markdown page, not a web-UI submodule — there is no dev server or route to drive, so the Playwright capture doesn't apply. The
POST /markdownrender check above is the equivalent verification, run against GitHub's own renderer rather than a local approximation.Fixes S-130225
Agent Audit