SkillAgentSearch skills...

cursorkleosr

Make AI Development Feel Natural in Cursor

Install / Use

npx skills add kleosr/cursorkleosr

Installs into whichever agent you are using.

About this skill
📐

.cursorrules

Cursor IDE rules (legacy)

Quality Score

79/100

Supported Platforms

Cursor

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.

Substance
26/30
Structure
20/20
Description
8/15
Adoption
11/20
Freshness
15/15

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 found

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.

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.

SkillScoreStarsUpdatedFormat
cursorkleosr (this skill)by kleosr79326today.cursorrules
ai-job-searchby MadsLorentzen10044.1ktodayCLAUDE.md
claude-howtoby luongnv8910041.7k1d agoCLAUDE.md
algorithmic-artby anthropics100177.9k5d agoSKILL.md
constraint-driven-developmentby addyosmani10098.8k4d agoSKILL.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.
<div align="center"> <img src="https://img.shields.io/badge/schema-1.2-blue?style=flat-square" /> <img src="https://img.shields.io/badge/license-MIT-brightgreen?style=flat-square" /> <img src="https://img.shields.io/badge/status-stable-2ea44f?style=flat-square" /> <img src="https://img.shields.io/badge/built%20for-Cursor%20rules-111827?style=flat-square" /> </div> <br /> <div align="center"> <h1>cursorkleosr</h1> <p><strong>Agent memory that cannot be forgotten — one always-on Cursor rule plus root markdown state.</strong></p> <p>Skills wait to be invoked. Rules load every session.<br />The agent reads your project state before it thinks — no more starting from zero.</p> </div> <br />

The 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.md and project_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

View on GitHub
GitHub Stars326
CategoryDevelopment
Updated17h ago
Forks42

Trust signals

83/100

From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.

1 medium1 low