| Project | What it is |
|---|---|
projects/rentstore |
رنت ستور — an Arabic-first UAE marketplace: many merchants' stores on one website, free personal pages, paid stores, and a setup-and-licence service. Site, automations, and the written idea all live in that folder. |
Each project keeps everything it owns in its own folder, split the same way:
content/ (the words and numbers), design/ (the look), pages/ (the screens),
code/ (the logic), automation/ (the workflows), docs/ (the thinking).
The rest of this repo is the original practice ground for the GitHub workflow.
This repo exists to try out the full GitHub workflow: cloning, branching, committing, and opening a pull request.
This change was made from a remote Claude Code session to confirm that
kicking off work from outside the terminal (web/mobile) works end to end.
design-system/ holds my house style, codified so a website, a PowerPoint
template, or anything I commission comes back in the same format.
design-system/DESIGN-BRIEF.md— the spec to hand a designer or an AI tooldesign-system/tokens/— colour, type, space and radius tokens as JSON and CSS custom propertiesdesign-system/css/— the component and slide layerdesign-system/powerpoint/SPEC.md— point sizes and inch positions for building a.potxdesign-system/examples/— a web landing page and a 14-slide deck, both built from the system; open either in a browser
Six accent themes ship with it (amber, electric, navy, teal, green, coral) and
swap with a single class on <html>.
A minimal Claude Agent SDK (TypeScript) starter lives in agent.ts.
npm install
cp .env.example .env # then fill in ANTHROPIC_API_KEY
npm run agent # or: npm run agent "your prompt here"
npm run typecheckagent.ts calls query() from @anthropic-ai/claude-agent-sdk and streams the
response, printing assistant text and logging tool calls to stderr. Set
COMPOSIO_MCP_URL to attach the Composio tool router as an HTTP MCP server;
leave it unset to run with the built-in tools only.