You are already a number. Every rule cited, every weight editable.
git clone https://github.com/royashbrook/lifescored1 items in this repository
Use when someone asks for their "life score", how credit bureaus / actuarial tables / lenders / audit studies turn a person into a number, or wants to compute, break down, or improve a transparency score — computed entirely on-device from the public lifescored rulebook, no personal data ever sent anywhere.
Tools overview
# life. scored.
[](https://github.com/royashbrook/lifescored/actions/workflows/deploy.yml)
**You are already a number.**
A credit score, an actuarial row, a callback probability — this app rebuilds those numbers in the open: every rule cited or flagged as a guess, every weight visible and editable. Transparency, not judgment.
## Stack
- Svelte 5 + SvelteKit, prerendered static pages, deployed to Cloudflare Workers
- One dynamic endpoint: `POST /api/narrative` — KV-cached Gemini narratives with a
deterministic local fallback (the app is fully functional with no API key at all)
- All user data stays in the browser (localStorage + URL-fragment share links)
- Traffic is measured with Cloudflare Web Analytics — cookieless and aggregate; it cannot see your inputs, which never leave your device anyway.
## Develop
npm install
npm run dev # app at localhost:5173 (narrative falls back to local composer)
npm test # vitest suite: rulebook invariants, engine, codec, worker handler
npm run check # svelte-check
## Deploy (Cloudflare free tier)
Deploys run automatically from GitHub Actions on every push to `main`
([`.github/workflows/deploy.yml`](.github/workflows/deploy.yml)): the workflow
runs the full test suite + typecheck, and only then builds and deploys.
**One-time setup:**
1. Create the KV namespace and paste its id into `wrangler.jsonc`:
npx wrangler kv namespace create NARRATIVE_KV
2. Set the Gemini key as a Worker secret (persists across deploys; optional —
omit to run AI-free with the local narrative fallback):
npx wrangler secret put GEMINI_API_KEY
3. Add two repository secrets in GitHub
(Settings → Secrets and variables → Actions):
- `CLOUDFLARE_API_TOKEN` — a token with the *Edit Cloudflare Workers* template
- `CLOUDFLARE_ACCOUNT_ID` — your account id
Push to `main` and the action ships it. To deploy by hand instead:
npm run deploy
## Deploy your own
Fork the repo, do the one-time setup above with your own Cloudflare account, and
push. The app is fully functional with no Gemini key at all.
## Editing the rulebook
Rules live in `src/lib/rulebook/<domain>.ts`. Each rule is declarative: logic,
evidence tag (`SOURCED`/`SPECULATIVE`), citation with access date, a pure
`position(inputs)` (the measured fact, normalized to a numeric position), declared
`bounds` (negative floors only where the cited system itself subtracts; the wealth
rules are uncapped above), and a `weightRationale` justifying its weight against
the 1.0× income baseline; the engine computes `points = round(position × weight)`.
Add a rule, and the UI, weight editor, share
codec, and about-page source list pick it up automatically. `npm test` enforces
the invariants (bounds, integer scores, citation present).
## Use it from an agent (MCP or skill)
The whole rulebook + exact math is published so any agent can compute a score **on its own side** — nothing about a person is ever sent to lifescored.com.
- **MCP server** — `com.lifescored/mcp` on the [official registry](https://registry.modelcontextprotocol.io); endpoint `https://lifescored.com/mcp` (stateless Streamable HTTP, no auth, accepts no personal data). Tools: `get_rulebook`, `get_input_schema`, `get_methodology`, `how_to_give_feedback`.
- **Skill** — a drop-in [`skills/lifescored/`](skills/lifescored/SKILL.md) skill. Copy it into your agent's skills directory (e.g. `~/.claude/skills/`). It prefers the MCP and falls back to `rules.json`.
- **Raw data** — [`https://lifescored.com/rules.json`](https://lifescored.com/rules.json) and [`/llms.txt`](https://lifescored.com/llms.txt).
## Contributing
Every commit must reference a GitHub issue number, e.g. `feat: add presets (#2)` or `refs #5`. A `commit-msg` hook enforces this automatically — it is installed via `core.hooksPath` pointing to `.githooks/`, which activates on `npm install` (the `prepare` script runs `git config core.hooksPath .githooks`). Merge commits and reverts are exempt. To find or open an issue: `gh issue list` / `gh issue create`.
## License
MIT — see LICENSE.
What people ask about lifescored
What is royashbrook/lifescored?
+
royashbrook/lifescored is tools for the Claude AI ecosystem. You are already a number. Every rule cited, every weight editable. It has 0 GitHub stars and was last updated today.
How do I install lifescored?
+
You can install lifescored by cloning the repository (https://github.com/royashbrook/lifescored) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is royashbrook/lifescored safe to use?
+
royashbrook/lifescored has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.
Who maintains royashbrook/lifescored?
+
royashbrook/lifescored is maintained by royashbrook. The last recorded GitHub activity is from today, with 4 open issues.
Are there alternatives to lifescored?
+
Yes. On ClaudeWave you can browse similar tools at /categories/tools, sorted by popularity or recent activity.
Deploy lifescored to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/royashbrook-lifescored)<a href="https://claudewave.com/repo/royashbrook-lifescored"><img src="https://claudewave.com/api/badge/royashbrook-lifescored" alt="Featured on ClaudeWave: royashbrook/lifescored" width="320" height="64" /></a>More Tools
A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.
An AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman
AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs, papers, images, or videos into a queryable knowledge graph. App code + database schema + infrastructure in one graph.
A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.
CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies