agentreadme

Report Β· marked 26 Aug 2026

nexu-io/open-design

Solid foundations, held back in a few specific places.

TypeScript Β· 91,513 stars Β· 13,116 files Β· branch main

Fix these first

01
Test command is discoverable
Add a `test` script or a `test` target that runs the whole suite with no arguments. The convention is the interface β€” an agent tries `npm test` and `make test` before it tries reading your CI config.
02
File sizes fit in context
A single file that fills the context window forces an agent to work from fragments, and it will confidently edit code it never saw. Splitting the worst offenders pays for itself immediately.
03
Repository weight
Large binaries and vendored trees slow every operation an agent performs. Git LFS or a separate assets repo keeps the working tree navigable.

The full marking

Every deduction below names the file or setting it came from.

Instructions 25/27 A+

Whether the repo tells an agent how to behave before it starts guessing.

βœ“Agent instruction file 12/12
AGENTS.md is present, which is the format the most tools read.
Also found: CLAUDE.md
βœ—Instruction quality 10/12
Specific enough that an agent can act on it.
Worth fixing: it's 42k characters, which burns context on every single turn.
names the actual commands to run
uses headings, so an agent can skim it
includes copyable code blocks
βœ“README as an entry point 3/3
README has a clear getting-started section.
Setup 16/20 A-

Whether an agent can install the project and get it running without a human.

βœ“Deterministic install 6/6
pnpm-lock.yaml pins the dependency tree.
Found pnpm-lock.yaml
βœ“Discoverable commands 6/6
Commands are declared where an agent will look for them.
package.json scripts (postinstall, bootstrap, tools-dev, tools-pack, tools-release, tools-serve…)
scripts/ directory
βœ—Environment config 2/4
Env vars are mentioned in the README but there's no example file to copy.
Add a .env.example listing every variable with a safe placeholder value. It's the cheapest possible fix and it unblocks the whole first run.
βœ“Pinned runtime version 2/2
The language runtime version is pinned.
Found .node-version
βœ—Reproducible environment 0/2
No container or devcontainer definition.
A Dockerfile or devcontainer removes an entire class of 'it won't install' failures.
Verification loop 12/25 C+

Whether an agent can check its own work. This is the category that most decides whether agent output is trustworthy.

βœ“Tests exist 8/8
1940 test files against 4384 source files.
e.g. apps/closure/tests/closure.test.ts, apps/daemon/src/plugins/atoms/build-test.ts, apps/daemon/tests/aborted-error.test.ts
βœ—Test command is discoverable 0/7
There's no obvious way to run the tests. Even if tests exist, an agent won't reliably find the entry point.
Add a `test` script or a `test` target that runs the whole suite with no arguments. The convention is the interface β€” an agent tries `npm test` and `make test` before it tries reading your CI config.
βœ“Continuous integration 4/4
53 GitHub Actions workflows define what "passing" means.
βœ—Lint and format rules 0/3
No linter or formatter config. Style is tribal knowledge, so agent output will drift from yours.
A formatter config is the cheapest way to stop reviewing whitespace in agent diffs. It moves style from opinion to a command.
βœ—Static type checking 0/3
No static type checking.
A type checker gives an agent an error message instead of a runtime surprise. It's the second-fastest feedback loop after the compiler.
Context economy 9/20 C

Whether the repo fits in a context window, or fights it.

βœ“No committed build output 6/6
No generated directories committed.
βœ“.gitignore hygiene 3/3
.gitignore covers 71 patterns.
βœ—File sizes fit in context 0/6
170 source files are over 100KB.
A single file that fills the context window forces an agent to work from fragments, and it will confidently edit code it never saw. Splitting the worst offenders pays for itself immediately.
apps/landing-page/app/alternatives-i18n.part-e.ts β€” 972KB
apps/landing-page/app/alternatives-i18n.part-b.ts β€” 954KB
apps/landing-page/app/alternatives-i18n.part-c.ts β€” 944KB
βœ—Repository weight 0/5
About 1852MB checked out. Large enough that cloning and searching are both slow.
Large binaries and vendored trees slow every operation an agent performs. Git LFS or a separate assets repo keeps the working tree navigable.

Here is your AGENTS.md

Drafted from what is actually in this repository: the install command from your lockfile, the commands you already declare, your real directory layout. Anything marked TODO needs a person. Save it at the root as AGENTS.md.

AGENTS.md β€” drafted for nexu-io/open-design
# AGENTS.md

🎨 Best DeepSeek Harness Design Plugin. The open-source Claude Design alternative. πŸ–₯️ Local-first desktop app. πŸ–ΌοΈ Your coding agent becomes the design engine: prototypes, landing pages, dashboards, slides, images & video β€” real files, HTML/PDF/PPTX/MP4 export. πŸ€– Claude Code / Codex / Cursor / DeepSeek Harness / OpenCode & 20+ CLIs via BYOK.

## Setup

```
pnpm install
```

## Commands

```
pnpm typecheck         # type check without emitting
pnpm postinstall
pnpm bootstrap
pnpm tools-dev
pnpm tools-pack
pnpm tools-release
pnpm tools-serve
pnpm nix:update-hash
```

## Layout

- `apps/`             3402 source files
- `packages/`         306 source files
- `e2e/`              189 source files
- `tools/`            169 source files
- `design-templates/` 99 source files
- `scripts/`          48 source files

## Conventions

- Tests live alongside the code they cover, following `apps/closure/tests/closure.test.ts`.
- CI defines what passing means. See `.github/workflows/agent-pr-explore-sandbox.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `apps/landing-page/app/alternatives-i18n.part-e.ts` is 972KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.

Open the raw markdown  or  curl -o AGENTS.md agentreadme.com/draft/nexu-io/open-design.md

Show the mark

The badge re-checks daily, so it keeps up as the repository changes. Use mark again to force it now.

agent ready 71 out of 100

[![agent ready](https://agentreadme.com/badge/nexu-io/open-design.svg)](https://agentreadme.com/nexu-io/open-design)

Other TypeScript repositories, marked

freeCodeCamp/freeCodeCamp 69 B openclaw/openclaw 68 B nilbuild/developer-roadmap 45 C vuejs/vue 67 B n8n-io/n8n 87 A anomalyco/opencode 80 A-

All TypeScript repositories

Think this mark is wrong?

Every deduction above names the file it came from, so this can be settled by looking. If a check missed something, that is a rule worth fixing.

Open an issue, already filled in