cursorkleosr
Make AI Development Feel Natural in Cursor
Install / Use
npx skills add kleosr/cursorkleosrInstalls into whichever agent you are using.
.cursorrules
Cursor IDE rules (legacy)
Quality Score
Category
Development & EngineeringSupported Platforms
Our assessment of cursorkleosr
cursorkleosr scores 79/100 on our quality scale, 1460th of 2,717 Development & Engineering skills we index.
Its .cursorrules is 3.8 KB long, well organised into 9 sections with 6 code examples: a solid amount of guidance for an agent.
It has 326 GitHub stars, a meaningful sign that others use it.
Maintenance, license and trust
- The repository was last updated today, so cursorkleosr is actively maintained.
- Our last check on 2026-09-27 found the source still online.
- No license is declared. By default that means all rights are reserved: you can read it, but reusing or redistributing it is not clearly permitted. Ask the author before building on it commercially.
- Its trust signals score 83/100, with 2 cautions from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful.
AI review by kimi-k2.7-code on 2026-09-24. Automated pattern scan on 2026-09-24. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
cursorkleosr compared with similar skills
All 4 of these similar skills score higher than cursorkleosr; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| cursorkleosr (this skill)by kleosr | 79 | 326 | today | .cursorrules |
| ai-job-searchby MadsLorentzen | 100 | 44.1k | today | CLAUDE.md |
| claude-howtoby luongnv89 | 100 | 41.7k | 1d ago | CLAUDE.md |
| algorithmic-artby anthropics | 100 | 177.9k | 5d ago | SKILL.md |
| constraint-driven-developmentby addyosmani | 100 | 98.8k | 4d ago | SKILL.md |
Frequently asked questions
- How do I install cursorkleosr?
- Run
npx skills add kleosr/cursorkleosr. The install tabs above show the steps for each supported agent. - Which AI agents does cursorkleosr work with?
- It is written for Cursor, as a .cursorrules file. Other agents that read the same format can often use it too.
- Is cursorkleosr safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful. It declares no license and scores 83/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is cursorkleosr still maintained?
- The repository was last updated today, so cursorkleosr is actively maintained.
Skill content
View source on GitHubThe Breakthrough
Most agent-memory setups are opt-in: a skill the agent must remember to call, a file the human must paste into chat. This one is always-on.
.cursor/rules/workflow-memory.mdc ships with alwaysApply: true, so Cursor injects the operating loop into every agent session automatically. The agent's first move is reading workflow_state.md — before you ask for anything. When it finishes meaningful work, it writes state back. Memory stops being a feature you invoke and becomes a property of the repository.
Setup
git clone https://github.com/kleosr/cursorkleosr.git
cd cursorkleosr
Open project_config.md, set your goals and stack. Open workflow_state.md, set Phase: INIT — READY. Done — no dependencies, no build step.
Usage
There is nothing to invoke. Open the repo in Cursor and work:
- Session start — the agent reads
workflow_state.mdandproject_config.md, then reconstructs the next action on its own. - During work — one phase at a time:
ANALYZE → PREPARE → IMPLEMENT → VALIDATE. - After meaningful change — the agent writes state back. No per-message noise.
Manual fallback, from any terminal:
cat workflow_state.md # where are we?
cat project_config.md # what are we building?
Files
| File | Purpose |
|------|---------|
| .cursor/rules/workflow-memory.mdc | Always-on operating loop — injected into every agent session |
| workflow_state.md | Moving parts: current phase, plan, blockers, log |
| project_config.md | Slow-changing facts: goals, stack, patterns, constraints, changelog |
| Instructions.md | Human-facing reminder of the read → act → write loop |
Workflow Loop
read state → read config → act → write state back
↓
ANALYZE → PREPARE → IMPLEMENT → VALIDATE
graph LR
S[Session Start] --> A[Read workflow_state.md];
A --> B{Task Ready?};
B -- Yes --> C[Process Next Task];
B -- No --> D[Continue Current Work];
D --> E[Execute Step];
E --> F[Update workflow_state.md];
F --> G{Validation Needed?};
G -- Yes --> H[Run Checks];
G -- No --> D;
C --> I{More Tasks?};
I -- Yes --> J[Reset Workspace];
J --> K[Fresh Start];
K --> A;
I -- No --> L[Mark Complete];
L --> M[Idle];
Architecture
.
├── .cursor/
│ └── rules/
│ └── workflow-memory.mdc — always-on agent operating loop
├── project_config.md — goals, stack, patterns, constraints, changelog
├── workflow_state.md — phase, plan, blockers, log
├── Instructions.md — human loop reminder
└── LICENSE — MIT
Zero dependencies. No build step. Root markdown stays editable in any editor, diffable in any tool, and greppable from any terminal.
Development
Documentation-only project. No tests, no compilation, no CI pipeline. Validate edits with:
git diff --check
Why Markdown?
Plain text outlasts everything. No database, no schema migrations, no lock-in, no dependency chain. State you can read, diff, and grep from anywhere — and a rule the agent cannot ignore.
License
MIT. See LICENSE.
Related Skills
ai-job-search
44.1kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
claude-howto
41.7kA visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
constraint-driven-development
98.8kEstablishes a project's quality bar as a written contract and stops agents quietly lowering it. Interviews the user on which dimensions matter, supplies sane default thresholds when they have no number in mind, records everything in CONSTRAINTS.md, and watches the diff for a weakened bar — new @ts-i…
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
