RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Configs/novuhq/novu/diff

Two files, one repository

novuhq/novu ships 2 formats across 19 indexed files. The question worth asking is whether the second one says anything the first does not.

CompareAGENTS.md ↔ Cursor rules
A · AGENTS.md · 326 wordsB · .deepsec/AGENTS.md · 112 words
What each file covers, counted
DimensionSharedOnly in AOnly in BOverlap
Sections0930%
Commands0210%
Section tags12125%

What each file covers

Sections

0 shared · 9 only in A · 3 only in B
  • − AGENTS.md
  • − Cursor Cloud specific instructions
  • − Build
  • − AI Boundaries
  • − Always
  • − Ask First
  • − Never
  • − Developer-local agent config
  • − Novu Distribution
  • + Agent setup
  • + Common tasks
  • + Reference

Commands

0 shared · 2 only in A · 1 only in B
  • − pnpm setup:agent
  • − pnpm build
  • + pnpm install

Section tags

1 shared · 2 only in A · 1 only in B
  • − build
  • − do-not
  • + setup
  •   agent-behaviour

Line diff

+18 added−38 removed6 unchanged13.6% identical
novuhq/novu · AGENTS.md
@@ −1 @@
1# AGENTS.md
2 
3## Cursor Cloud specific instructions
 
 
4 
5`pnpm setup:agent` has already been run. Do not run it again. The environment is fully configured: dependencies installed, enterprise packages linked, project built, `.env` files in place, Docker services running, and a default user/org seeded. The dashboard auto signs in the pre-seeded agent user when opened in the browser (no manual login unless auto sign-in fails).
6 
7## Build
 
 
 
 
 
 
 
 
8 
9Run `pnpm build` after changes to `packages/` or `enterprise/`. Direct changes to `apps/` do not require a rebuild.
10 
11## AI Boundaries
12 
13### Always
14- Work within: `apps/api`, `apps/dashboard`, `apps/worker`, `apps/ws`
15- Use shared packages: `packages/shared`, `packages/framework`, `packages/js`, `packages/react`
16- Follow `libs/dal` for data access, `libs/application-generic` for business logic
17 
18### Ask First
19- Before creating new UI components not in `apps/dashboard/src/components/`
20- Before adding npm dependencies
21- Before modifying MongoDB models, ClickHouse table definitions, or anything in `enterprise/` or `packages/providers/`
22 
23### Never
24- Inactive apps — do not touch, unless monorepo wide refactor: `apps/webhook`
25- Auto-generated — never edit: `libs/internal-sdk`
26- UI: reuse existing Radix/shadcn components only; do not copy patterns from `playground/` into production code
27- If doing a monorepo wide refactor, you can touch the read only, but only when necessary.
28 
29 
30## Developer-local agent config
31 
32If a **`.agents-local/`** directory exists in your working copy, read **`.agents-local/README.md`** first for personal, git-ignored agent configuration, skills and rules. Absence of the directory is normal.
33 
34## Novu Distribution
35Novu is distributed in 3 modes, Community Edition, Enterprise Cloud Edition, and On-Prem Enterprise Edition.
36 
37When making changes targeted to the Enterprise distribution, we need to make sure that the changes are not breaking the Community edition, and are properly gated behind a flag, or the novu enterpise env variables. Similarly when some changes are only targeting the Cloud, self-hosted on prem should not be affected.
38 
39<!-- Infrastructure & services: see .cursor/rules/infrastructure.mdc -->
40<!-- Dependency graph: see .cursor/rules/dependency-graph.mdc -->
41<!-- Testing: see .cursor/rules/testing.mdc -->
42<!-- PR format: see .cursor/rules/pullrequest.mdc -->
43<!-- Enterprise submodule: see .cursor/skills/enterprise-submodule/SKILL.md -->
44 
novuhq/novu · .deepsec/AGENTS.md
@@ +1 @@
1# Agent setup
2 
3This is a deepsec scanning workspace. Each registered project has its
4own setup prompt at `data/<id>/SETUP.md` — open the relevant one when
5asked to set a project up.
6 
7## Common tasks
8 
9- **Set up a project for scanning**: read `data/<id>/SETUP.md` and
10 follow it (read `node_modules/deepsec/SKILL.md`, then fill
11 `data/<id>/INFO.md` from the target codebase).
12- **Add a new project**: run `deepsec init-project <root>` — it
13 scaffolds `data/<id>/` and prints/writes the setup prompt for the
14 new project.
15- **Write a custom matcher** (only after a real true-positive shows you
16 a pattern worth keeping): read
17 `node_modules/deepsec/dist/docs/writing-matchers.md`.
18 
19## Reference
20 
21The deepsec skill is at `node_modules/deepsec/SKILL.md` (after
22`pnpm install`). The full docs ship at
23`node_modules/deepsec/dist/docs/`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24 
@@ −1 +1 @@
1−# AGENTS.md
1+# Agent setup
22  
3−## Cursor Cloud specific instructions
3+This is a deepsec scanning workspace. Each registered project has its
4+own setup prompt at `data/<id>/SETUP.md` — open the relevant one when
5+asked to set a project up.
46  
5−`pnpm setup:agent` has already been run. Do not run it again. The environment is fully configured: dependencies installed, enterprise packages linked, project built, `.env` files in place, Docker services running, and a default user/org seeded. The dashboard auto signs in the pre-seeded agent user when opened in the browser (no manual login unless auto sign-in fails).
7+## Common tasks
68  
7−## Build
9+- **Set up a project for scanning**: read `data/<id>/SETUP.md` and
10+ follow it (read `node_modules/deepsec/SKILL.md`, then fill
11+ `data/<id>/INFO.md` from the target codebase).
12+- **Add a new project**: run `deepsec init-project <root>` — it
13+ scaffolds `data/<id>/` and prints/writes the setup prompt for the
14+ new project.
15+- **Write a custom matcher** (only after a real true-positive shows you
16+ a pattern worth keeping): read
17+ `node_modules/deepsec/dist/docs/writing-matchers.md`.
818  
9−Run `pnpm build` after changes to `packages/` or `enterprise/`. Direct changes to `apps/` do not require a rebuild.
19+## Reference
1020  
11−## AI Boundaries
12− 
13−### Always
14−- Work within: `apps/api`, `apps/dashboard`, `apps/worker`, `apps/ws`
15−- Use shared packages: `packages/shared`, `packages/framework`, `packages/js`, `packages/react`
16−- Follow `libs/dal` for data access, `libs/application-generic` for business logic
17− 
18−### Ask First
19−- Before creating new UI components not in `apps/dashboard/src/components/`
20−- Before adding npm dependencies
21−- Before modifying MongoDB models, ClickHouse table definitions, or anything in `enterprise/` or `packages/providers/`
22− 
23−### Never
24−- Inactive apps — do not touch, unless monorepo wide refactor: `apps/webhook`
25−- Auto-generated — never edit: `libs/internal-sdk`
26−- UI: reuse existing Radix/shadcn components only; do not copy patterns from `playground/` into production code
27−- If doing a monorepo wide refactor, you can touch the read only, but only when necessary.
28− 
29− 
30−## Developer-local agent config
31− 
32−If a **`.agents-local/`** directory exists in your working copy, read **`.agents-local/README.md`** first for personal, git-ignored agent configuration, skills and rules. Absence of the directory is normal.
33− 
34−## Novu Distribution
35−Novu is distributed in 3 modes, Community Edition, Enterprise Cloud Edition, and On-Prem Enterprise Edition.
36− 
37−When making changes targeted to the Enterprise distribution, we need to make sure that the changes are not breaking the Community edition, and are properly gated behind a flag, or the novu enterpise env variables. Similarly when some changes are only targeting the Cloud, self-hosted on prem should not be affected.
38− 
39−<!-- Infrastructure & services: see .cursor/rules/infrastructure.mdc -->
40−<!-- Dependency graph: see .cursor/rules/dependency-graph.mdc -->
41−<!-- Testing: see .cursor/rules/testing.mdc -->
42−<!-- PR format: see .cursor/rules/pullrequest.mdc -->
43−<!-- Enterprise submodule: see .cursor/skills/enterprise-submodule/SKILL.md -->
21+The deepsec skill is at `node_modules/deepsec/SKILL.md` (after
22+`pnpm install`). The full docs ship at
23+`node_modules/deepsec/dist/docs/`.
4424  

Also from Kynth Studios

Built for the same person as RuleStack

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

StillShipping

Which agent tools have stopped shipping

stillshipping.kynth.studio

BlockDex

Search inside every shadcn registry

blockdex.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

RuleStack

Built by

Kynth Studios

the studio behind ToolDrift, StillShipping and BlockDex

part of Toolproof, the measurement layer for AI agent tooling

Directory

Configs
Stacks
Compare formats
AGENTS.md vs CLAUDE.md
Cursor rules alternatives
Diff two configs
Best AGENTS.md examples
Best Cursor rules examples
What goes in a CLAUDE.md

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

© 2026 RuleStack. A Kynth Studios product. Changelog

RuleStack

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

RuleStack

Built by

Kynth Studios

the studio behind ToolDrift, StillShipping and BlockDex

part of Toolproof, the measurement layer for AI agent tooling

Directory

Configs
Stacks
Compare formats
AGENTS.md vs CLAUDE.md
Cursor rules alternatives
Diff two configs
Best AGENTS.md examples
Best Cursor rules examples
What goes in a CLAUDE.md

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

© 2026 RuleStack. A Kynth Studios product. Changelog

RuleStack

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

RuleStack

Built by

Kynth Studios

the studio behind ToolDrift, StillShipping and BlockDex

part of Toolproof, the measurement layer for AI agent tooling

Directory

Configs
Stacks
Compare formats
AGENTS.md vs CLAUDE.md
Cursor rules alternatives
Diff two configs
Best AGENTS.md examples
Best Cursor rules examples
What goes in a CLAUDE.md

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

© 2026 RuleStack. A Kynth Studios product. Changelog

RuleStack