multiAI Summary Pending
perigon-agent
Pointers for Copilot/agents to apply Perigon conventions
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/perigon-agent/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/aterdev/perigon-agent/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/perigon-agent/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How perigon-agent Compares
| Feature / Agent | perigon-agent | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Pointers for Copilot/agents to apply Perigon conventions
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
## When to use
- Need project rules, locations, or docs before generating code.
## Usage
- Start with .github/copilot-instructions.md (global rules: accuracy first, no builds unless asked, check diagnostics).
- Backend map: definitions in src/Definition/{Entity,EntityFramework,Share,ServiceDefaults}; managers/DTOs in src/Modules/{Mod}/{Managers,Models}; controllers in src/Services/*/Controllers; host in src/AppHost.
- Frontend map: Angular app in src/ClientApp/WebApp (routes app/app.routes.ts, services app/services, shared components app/share/components, i18n assets/i18n).
- Key docs: Development-Conventions, Manager-Business-Logic, Controller-APIs, Database, Data-Access, Directory-Structure at https://dusi.dev/docs/Perigon/en-US/10.0/…
- Behavior defaults: RESTful APIs; ManagerBase pattern; Code First EF; Guid v7 IDs; BusinessException/Problem for errors; select projections over heavy Include; avoid manager cross-calls; no ApiResponse wrappers.
- When unclear: ask for entity/DTO details and target module/service; do not assume; avoid auto-running builds/migrations.