se-patterns — for Claude Code se-patterns, se-agent-builder, community, for Claude Code, ide skills, Designing, workforce, system, Reviewing, existing

v1.0.0

À propos de ce Skill

Parfait pour les Agents Architectes ayant besoin de principes d'ingénierie logicielle structurés pour des builds prêts pour la production Resume localise : The first "no" tells you which pattern to apply: Unit of Action — Is each task scoped to one entity? This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Fonctionnalités

Designing a new agent, tool, or workforce system
Reviewing an existing build for production readiness
Choosing which architecture pattern to apply
Pushing back on client requests that violate SE principles
Debugging production failures (start with Unit of Action)

# Core Topics

RelevanceAI RelevanceAI
[0]
[1]
Updated: 3/10/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
44
Canonical Locale
en
Detected Body Locale
en

Parfait pour les Agents Architectes ayant besoin de principes d'ingénierie logicielle structurés pour des builds prêts pour la production Resume localise : The first "no" tells you which pattern to apply: Unit of Action — Is each task scoped to one entity? This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Pourquoi utiliser cette compétence

Permet aux agents d'appliquer 6 modèles clés pour concevoir et examiner des systèmes d'intelligence artificielle, y compris l'Unité d'Action, leur permettant ainsi de garantir la préparation à la production et de déboguer les défaillances en utilisant des principes d'ingénierie logicielle et des

Meilleur pour

Parfait pour les Agents Architectes ayant besoin de principes d'ingénierie logicielle structurés pour des builds prêts pour la production

Cas d'utilisation exploitables for se-patterns

Concevoir de nouveaux agents d'intelligence artificielle avec une architecture évolutuve
Examiner les builds existants pour la préparation à la production
Déboguer les défaillances de production en utilisant le modèle d'Unité d'Action

! Sécurité et Limitations

  • Nécessite une compréhension des principes d'ingénierie logicielle
  • Limité à 6 modèles prédéfinis

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is se-patterns?

Parfait pour les Agents Architectes ayant besoin de principes d'ingénierie logicielle structurés pour des builds prêts pour la production Resume localise : The first "no" tells you which pattern to apply: Unit of Action — Is each task scoped to one entity? This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install se-patterns?

Run the command: npx killer-skills add RelevanceAI/se-agent-builder/se-patterns. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for se-patterns?

Key use cases include: Concevoir de nouveaux agents d'intelligence artificielle avec une architecture évolutuve, Examiner les builds existants pour la préparation à la production, Déboguer les défaillances de production en utilisant le modèle d'Unité d'Action.

Which IDEs are compatible with se-patterns?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for se-patterns?

Nécessite une compréhension des principes d'ingénierie logicielle. Limité à 6 modèles prédéfinis.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add RelevanceAI/se-agent-builder/se-patterns. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use se-patterns immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

se-patterns

Resume localise : The first "no" tells you which pattern to apply: Unit of Action — Is each task scoped to one entity? This AI agent skill supports Claude

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

When to Use

  • Designing a new agent, tool, or workforce system
  • Reviewing an existing build for production readiness
  • Choosing which architecture pattern to apply
  • Pushing back on client requests that violate SE principles
  • Debugging production failures (start with Unit of Action)

Quick Reference: 6 Patterns + Decision Sequence

Check patterns in this order. The first "no" tells you which pattern to apply:

  1. Unit of Action — Is each task scoped to one entity? Fix this first.
  2. Note Step — Does every 3+ step tool have documentation?
  3. Centralize Rules — Are business rules in one place?
  4. Code Over LLM — Are deterministic decisions in code steps?
  5. Parameterize — Any duplicated tools or agents?
  6. Compute at Right Level — Is logic in the right layer?
  7. Data Over Routing — Do agents pass data, not instructions?
  8. Audit Enrichment — Do writes include who/when/why?

Pattern Summary

PatternProblem It SolvesKey Question
Compute at Right LevelLogic in wrong layer"Where does this data naturally live?"
ParameterizeTool/agent duplication"Am I copy-pasting to change one value?"
Centralize RulesScattered business logic"How many places define this rule?"
Code Over LLMWasted credits on deterministic logic"Can this be if/else?"
Data Over RoutingInvisible control flow"Am I passing data or instructions?"
Audit EnrichmentUntraceable agent actions"Can I explain WHY from data alone?"

Reference Files

FileContent
design-philosophy.mdSE lens for build decisions, 3-layer architecture, push-back scripts
unit-of-action.mdThe foundational pattern — one entity per task
system-design-patterns.mdAll 6 architecture patterns with anti-patterns and examples
note-step.mdDocumentation-as-first-step pattern for tools
decision-guide.mdMeta-guide: which pattern to apply when

Compétences associées

Looking for an alternative to se-patterns or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resume localise : Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resume localise : The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Développeur