forked from auth0/agent-skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
63 lines (56 loc) · 2.91 KB
/
Copy path.coderabbit.yaml
File metadata and controls
63 lines (56 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
language: "en-US"
early_access: false
reviews:
profile: "assertive"
request_changes_workflow: false
high_level_summary: true
auto_review:
enabled: true
drafts: false
path_instructions:
- path: "plugins/**/SKILL.md"
instructions: |
This file must follow the Agent Skills specification (https://agentskills.io/specification).
Verify the following:
Frontmatter:
- `name` (required): max 64 chars, lowercase letters/numbers/hyphens only, must not start/end with hyphen, no consecutive hyphens, must match the parent directory name.
- `description` (required): max 1024 chars, must describe what the skill does AND when to use it. Flag vague descriptions.
- `license`: should be "Apache-2.0" for this repo.
- `metadata.author`: should be present (e.g. "Auth0 <support@auth0.com>").
- `metadata.version`: should be a semver string.
- `metadata.openclaw.emoji`: should be present (single emoji).
- `metadata.openclaw.homepage`: should point to https://github.com/auth0/agent-skills.
Body content:
- Should have clear step-by-step instructions for an AI agent.
- Should include working code examples with correct SDK usage.
- Should document prerequisites and "when NOT to use" guidance.
- Should reference the correct Auth0 SDK package.
- Total length should stay under 500 lines; longer content should be split into references/.
- File references should use relative paths from the skill root.
- path: "plugins/**/references/**"
instructions: |
Reference files provide supplemental documentation loaded on-demand by AI agents.
- Keep individual files focused on a single topic.
- Smaller files are better (agents load these into context).
- Ensure code examples are correct and use current SDK APIs.
- Filenames should be kebab-case markdown files.
- path: "plugins/**/scripts/**"
instructions: |
Scripts are executable code that AI agents can run.
- Must be self-contained or clearly document dependencies.
- Should include helpful error messages.
- Should handle edge cases gracefully.
- Check for security issues (command injection, credential leaks).
- path: "plugins/auth0/.claude-plugin/**"
instructions: |
This defines the Claude Code plugin manifest.
Ensure plugin.json is valid JSON and skill references are correct.
- path: "plugins/auth0/.cursor-plugin/**"
instructions: |
This defines the Cursor plugin manifest.
Ensure plugin.json is valid JSON and skill references are correct.
- path: "plugins/auth0/.codex-plugin/**"
instructions: |
This defines the Codex plugin manifest.
Ensure plugin.json is valid JSON and skill references are correct.