| Dimension | Shared | Only in A | Only in B | Overlap |
|---|---|---|---|---|
| Sections | 0 | 3 | 5 | 0% |
| Commands | 0 | 1 | 0 | 0% |
| Section tags | 1 | 1 | 1 | 33% |
What each file covers
Sections
0 shared · 3 only in A · 5 only in B- − Agent setup
- − Common tasks
- − Reference
- + Mintlify Steps and in-page anchors
- + Do this
- + Run the agent locally
- + Do not do this
- + Pattern reference
Commands
0 shared · 1 only in A · 0 only in B- − pnpm install
Section tags
1 shared · 1 only in A · 1 only in B- − setup
- + do-not
- agent-behaviour
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/docs-mintlify-steps.mdc
@@ +1 @@
1---
2description: Mintlify Steps anchors — use markdown headings inside Step so in-page links work
3globs: docs/**/*.mdx
4alwaysApply: false
5---
6
7# Mintlify Steps and in-page anchors
8
9Mintlify `<Step title="...">` does **not** create a heading ID. Links like `#run-the-agent-locally` will do nothing if they target a Step `title` prop.
10
11## Do this
12
13Put a real markdown heading inside `<Step>` when anything needs to link to that step (or when you want TOC/anchor support):
14
15```mdx
16<Steps>
17 <Step>
18## Run the agent locally
19
20Content here.
21 </Step>
22</Steps>
23```
24
25Then link with:
26
27```mdx
28skip to [Run the agent locally](#run-the-agent-locally)
29```
30
31## Do not do this
32
33```mdx
34{/* ❌ title prop is not an anchor target */}
35<Step title="Run the agent locally">
36...
37</Step>
38
39skip to [Run the agent locally](#run-the-agent-locally)
40```
41
42## Pattern reference
43
44See `docs/agents/custom-code-agent/quickstart.mdx` and `docs/agents/get-started/ai-sdk.mdx` for working examples.
45
@@ −1 +1 @@
1−# Agent setup
1+---
2+description: Mintlify Steps anchors — use markdown headings inside Step so in-page links work
3+globs: docs/**/*.mdx
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+# Mintlify Steps and in-page anchors
68
7−## Common tasks
9+Mintlify `<Step title="...">` does **not** create a heading ID. Links like `#run-the-agent-locally` will do nothing if they target a Step `title` prop.
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+## Do this
1812
19−## Reference
13+Put a real markdown heading inside `<Step>` when anything needs to link to that step (or when you want TOC/anchor support):
2014
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/`.
15+```mdx
16+<Steps>
17+ <Step>
18+## Run the agent locally
19+
20+Content here.
21+ </Step>
22+</Steps>
23+```
24+
25+Then link with:
26+
27+```mdx
28+skip to [Run the agent locally](#run-the-agent-locally)
29+```
30+
31+## Do not do this
32+
33+```mdx
34+{/* ❌ title prop is not an anchor target */}
35+<Step title="Run the agent locally">
36+...
37+</Step>
38+
39+skip to [Run the agent locally](#run-the-agent-locally)
40+```
41+
42+## Pattern reference
43+
44+See `docs/agents/custom-code-agent/quickstart.mdx` and `docs/agents/get-started/ai-sdk.mdx` for working examples.
2445
