| Dimension | Shared | Only in A | Only in B | Overlap |
|---|---|---|---|---|
| Sections | 0 | 3 | 2 | 0% |
| Commands | 0 | 1 | 1 | 0% |
| Section tags | 0 | 2 | 1 | 0% |
What each file covers
Sections
0 shared · 3 only in A · 2 only in B- − Agent setup
- − Common tasks
- − Reference
- + WebSocket Service
- + WebSocket Conventions
Commands
0 shared · 1 only in A · 1 only in B- − pnpm install
- + pnpm start:ws
Section tags
0 shared · 2 only in A · 1 only in B- − setup
- − agent-behaviour
- + code-style
Line diff
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
novuhq/novu · .cursor/rules/ws.mdc
@@ +1 @@
1---
2description: Rules for working in the WebSocket service (real-time delivery)
3globs: apps/ws/**/*
4alwaysApply: false
5---
6
7## WebSocket Service
8
9**Stack:** NestJS · Socket.io with Redis adapter (horizontal scaling)
10
11**Run:** `pnpm start:ws` — only needed for real-time features (live inbox, read/unread sync). Skip for most tasks.
12
13**Key directories:**
14```
15apps/ws/src/ # Socket gateways, guards, and event handlers
16```
17
18### WebSocket Conventions
19
20**Authentication:** Clients authenticate via JWT on the Socket.io handshake.
21
22**Scaling:** The Redis adapter is required in production — multiple ws instances share socket state through it.
23
24**Client packages:** Events emitted here are consumed by `@novu/js` and `@novu/react`. New Socket.io event types require matching updates in both packages.
25
@@ −1 +1 @@
1−# Agent setup
1+---
2+description: Rules for working in the WebSocket service (real-time delivery)
3+globs: apps/ws/**/*
4+alwaysApply: false
5+---
26
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.
7+## WebSocket Service
68
7−## Common tasks
9+**Stack:** NestJS · Socket.io with Redis adapter (horizontal scaling)
810
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`.
11+**Run:** `pnpm start:ws` — only needed for real-time features (live inbox, read/unread sync). Skip for most tasks.
1812
19−## Reference
13+**Key directories:**
14+```
15+apps/ws/src/ # Socket gateways, guards, and event handlers
16+```
2017
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/`.
18+### WebSocket Conventions
19+
20+**Authentication:** Clients authenticate via JWT on the Socket.io handshake.
21+
22+**Scaling:** The Redis adapter is required in production — multiple ws instances share socket state through it.
23+
24+**Client packages:** Events emitted here are consumed by `@novu/js` and `@novu/react`. New Socket.io event types require matching updates in both packages.
2425
