You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Contentstack .NET SDK – Agent guide
2
2
3
-
**Universal entry point** for contributors and AI agents. Each skill has a short**`skills/*/SKILL.md`**entry; exhaustive patterns, checklists, and examples live in **`skills/*/references/*.md`**where present.
3
+
**Universal entry point** for contributors and AI agents. Each skill is documented in**`skills/*/SKILL.md`**(YAML frontmatter for agent discovery where applicable).
4
4
5
5
## What this repo is
6
6
@@ -46,4 +46,4 @@ An index with “when to use” hints is in [`skills/README.md`](skills/README.m
46
46
47
47
## Using Cursor (optional)
48
48
49
-
If you use **Cursor**, [`.cursor/rules/README.md`](.cursor/rules/README.md) only points to **`AGENTS.md`**—the same conventions as for everyone else. Canonical guidance remains in **`skills/*/SKILL.md`** and **`skills/*/references/`**.
49
+
If you use **Cursor**, [`.cursor/rules/README.md`](.cursor/rules/README.md) only points to **`AGENTS.md`**—the same conventions as for everyone else. Canonical guidance remains in **`skills/*/SKILL.md`**.
Copy file name to clipboardExpand all lines: skills/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Source of truth for detailed guidance. Read **[AGENTS.md](../AGENTS.md)** first,
14
14
|`testing`| Writing or debugging unit/integration tests, coverage, test layout. |
15
15
|`code-review`| Reviewing a PR against SDK-specific checklist. |
16
16
17
-
Each folder contains **`SKILL.md`** with YAML frontmatter (`name`, `description`) for agent discovery. Long-form content is under **`references/`** when applicable—open `SKILL.md` first, then follow links.
17
+
Each folder contains **`SKILL.md`** with YAML frontmatter (`name`, `description`) for agent discovery.
Category-by-category checklists (breaking changes, HTTP, exceptions, serialization, fluent API, config, tests, multi-targeting, plugins, visibility) live in the reference docs below—not duplicated here.
19
+
The sections below provide category-by-category checklists (breaking changes, HTTP, exceptions, serialization, fluent API, config, tests, multi-targeting, plugins, visibility) and a short red-flag list for quick scanning.
20
20
21
-
## Reference
22
21
23
-
| Document | Contents |
24
-
|----------|----------|
25
-
|[references/code-review-checklist.md](references/code-review-checklist.md)| Full markdown checklists per area |
26
-
|[references/red-flags.md](references/red-flags.md)| Short anti-pattern list for quick scan |
22
+
## Code Review Checklist
23
+
24
+
### Breaking Changes Checklist
25
+
26
+
```markdown
27
+
## Breaking Changes Review
28
+
-[ ] No public method signatures removed or changed without [Obsolete] deprecation
0 commit comments