Browse Skills — Page 161
21,746 public skills · showing 16,001–16,100
- 100/100
react-nextjs-development-v2
diegosouzapw/awesome-omni-skills
React/Next.js Development Workflow workflow skill. Use this skill when the user needs React and Next.js 14+ application development with App Router, Server Components, TypeScript, Tailwind CSS, and modern frontend patterns and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
react-patterns
diegosouzapw/awesome-omni-skills
React Patterns workflow skill. Use this skill when the user needs Modern React patterns and principles. Hooks, composition, performance, TypeScript best practices and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
react-patterns-v2
diegosouzapw/awesome-omni-skills
React Patterns workflow skill. Use this skill when the user needs Modern React patterns and principles. Hooks, composition, performance, TypeScript best practices and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
react-patterns-v3
diegosouzapw/awesome-omni-skills
React Patterns workflow skill. Use this skill when the user needs Modern React patterns and principles. Hooks, composition, performance, TypeScript best practices and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
trailofbits/react-pdf
trailofbits/skills-curated
- Generating PDF documents (reports, invoices, resumes, forms, certificates) - Creating PDFs that need complex layouts (multi-column, grids, cards) - Building PDFs with inline SVG graphics, charts, or icons - Producing documents with custom Google Fonts or emoji - Any PDF task where flexbox layout is easier than absolute coordinate math
- 100/100
vercel-labs/react-pdf
vercel-labs/json-render
React PDF renderer for json-render. Use when generating PDF documents from JSON specs, working with @json-render/react-pdf, or rendering specs to PDF buffers/streams/files.
- 100/100
react-performance
HoangNguyen0403/agent-skills-standard
Optimize React rendering, bundle size, and data fetching performance. Use when optimizing React rendering performance, reducing re-renders, or improving bundle size.
- 100/100
react-security
HoangNguyen0403/agent-skills-standard
Prevent XSS, secure auth flows, and harden React client-side applications. Use when preventing XSS, securing auth flows, or auditing third-party dependencies in React.
- 100/100
react-server-components-framework
yonatangross/orchestkit
Use when building Next.js 16+ apps with React Server Components. Covers App Router, Cache Components (replacing experimental_ppr), streaming SSR, Server Actions, and React 19 patterns for server-first architecture.
- 100/100
react-state-management
wshobson/agents
Master modern React state management with Redux Toolkit, Zustand, Jotai, and React Query. Use when setting up global state, managing server state, or choosing between state management solutions.
- 100/100
react-state-management
HoangNguyen0403/agent-skills-standard
Select and implement local, global, and server state patterns in React. Use when choosing or implementing state management (Context, Zustand, Redux, React Query) in React.
- 100/100
react-state-management-v2
diegosouzapw/awesome-omni-skills
React State Management workflow skill. Use this skill when the user needs Master modern React state management with Redux Toolkit, Zustand, Jotai, and React Query. Use when setting up global state, managing server state, or choosing between state management solutions and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
react-testing
HoangNguyen0403/agent-skills-standard
Test React components with RTL and Jest/Vitest. Use when writing React component tests with React Testing Library, Jest, or Vitest.
- 100/100
react-three-fiber
vercel-labs/json-render
React Three Fiber 3D renderer for json-render. Use when working with @json-render/react-three-fiber, building 3D scenes from JSON specs, rendering meshes/lights/models/environments, or integrating Three.js with json-render catalogs.
- 100/100
react-three-fiber
TerminalSkills/skills
>-
- 100/100
react-three-fiber-game
openai/plugins
Build React-hosted 3D browser games with React Three Fiber. Use when the user wants pmndrs-based scene composition, shared React state, and 3D HUD integration inside a React app.
- 100/100
react-tooling
HoangNguyen0403/agent-skills-standard
Configure debugging, bundle analysis, and ecosystem tools for React applications. Use when setting up Vite/webpack build tooling, analyzing bundle size, debugging re-renders with React DevTools, or configuring ESLint and StrictMode for React projects.
- 100/100
react-typescript
HoangNguyen0403/agent-skills-standard
Type React components and hooks with TypeScript patterns. Use when typing React props, hooks, event handlers, or component generics in TypeScript.
- 100/100
react-ui-patterns
diegosouzapw/awesome-omni-skills
React UI Patterns workflow skill. Use this skill when the user needs Modern React UI patterns for loading states, error handling, and data fetching. Use when building UI components, handling async data, or managing UI states and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
react-ui-patterns-v2
diegosouzapw/awesome-omni-skills
React UI Patterns workflow skill. Use this skill when the user needs Modern React UI patterns for loading states, error handling, and data fetching. Use when building UI components, handling async data, or managing UI states and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
react-vendoring
vercel/next.js
>
- 90/100
react-web
alinaqi/maggy
React web development with hooks, React Query, Zustand
- 100/100
react:components
google-labs-code/stitch-skills
Converts Stitch designs into modular Vite and React components using system-level networking and AST-based validation.
- 100/100
react18-batching-patterns
github/awesome-copilot
'Provides exact patterns for diagnosing and fixing automatic batching regressions in React 18 class components. Use this skill whenever a class component has multiple setState calls in an async method, inside setTimeout, inside a Promise .then() or .catch(), or in a native event handler. Use it before writing any flushSync call - the decision tree here prevents unnecessary flushSync overuse. Also use this skill when fixing test failures caused by intermediate state assertions that break after React 18 upgrade.'
- 100/100
react18-dep-compatibility
github/awesome-copilot
'React 18.3.1 and React 19 dependency compatibility matrix.'
- 100/100
react18-enzyme-to-rtl
github/awesome-copilot
'Provides exact Enzyme → React Testing Library migration patterns for React 18 upgrades. Use this skill whenever Enzyme tests need to be rewritten - shallow, mount, wrapper.find(), wrapper.simulate(), wrapper.prop(), wrapper.state(), wrapper.instance(), Enzyme configure/Adapter calls, or any test file that imports from enzyme. This skill covers the full API mapping and the philosophy shift from implementation testing to behavior testing. Always read this skill before rewriting Enzyme tests - do not translate Enzyme APIs 1:1, that produces brittle RTL tests.'
- 100/100
react18-legacy-context
github/awesome-copilot
'Provides the complete migration pattern for React legacy context API (contextTypes, childContextTypes, getChildContext) to the modern createContext API. Use this skill whenever migrating legacy context in class components - this is always a cross-file migration requiring the provider AND all consumers to be updated together. Use it before touching any contextTypes or childContextTypes code, because migrating only the provider without the consumers (or vice versa) will cause a runtime failure. Always read this skill before writing any context migration - the cross-file coordination steps here prevent the most common context migration bugs.'
- 100/100
react18-lifecycle-patterns
github/awesome-copilot
'Provides exact before/after migration patterns for the three unsafe class component lifecycle methods - componentWillMount, componentWillReceiveProps, and componentWillUpdate - targeting React 18.3.1. Use this skill whenever a class component needs its lifecycle methods migrated, when deciding between getDerivedStateFromProps vs componentDidUpdate, when adding getSnapshotBeforeUpdate, or when fixing React 18 UNSAFE_ lifecycle warnings. Always use this skill before writing any lifecycle migration code - do not guess the pattern from memory, the decision trees here prevent the most common migration mistakes.'
- 100/100
react18-string-refs
github/awesome-copilot
'Provides exact migration patterns for React string refs (ref="name" + this.refs.name) to React.createRef() in class components. Use this skill whenever migrating string ref usage - including single element refs, multiple refs in a component, refs in lists, callback refs, and refs passed to child components. Always use this skill before writing any ref migration code - the multiple-refs-in-list pattern is particularly tricky and this skill prevents the most common mistakes. Use it for React 18.3.1 migration (string refs warn) and React 19 migration (string refs removed).'
- 100/100
react19-concurrent-patterns
github/awesome-copilot
'Preserve React 18 concurrent patterns and adopt React 19 APIs (useTransition, useDeferredValue, Suspense, use(), useOptimistic, Actions) during migration.'
- 100/100
react19-source-patterns
github/awesome-copilot
'Reference for React 19 source-file migration patterns, including API changes, ref handling, and context updates.'
- 100/100
react19-test-patterns
github/awesome-copilot
'Provides before/after patterns for migrating test files to React 19 compatibility, including act() imports, Simulate removal, and StrictMode call count changes.'
- 100/100
reactflow-custom-nodes
TheBushidoCollective/han
Use when creating custom React Flow nodes, edges, and handles. Covers custom node components, resizable nodes, toolbars, and advanced customization.
- 100/100
reactflow-fundamentals
TheBushidoCollective/han
Use when building node-based UIs, flow diagrams, workflow editors, or interactive graphs with React Flow. Covers setup, nodes, edges, controls, and interactivity.
- 100/100
reactome-skill
openai/plugins
Submit compact Reactome ContentService requests for pathway, event, participant, search, and diagram-related data. Use when a user wants concise Reactome summaries
- 100/100
reactome-skill
aipoch/medical-research-skills
Query the Reactome REST API for pathway content and enrichment analyses; use when you need curated pathway data, reaction details, or overrepresentation results for a gene list.
- 100/100
read-eval-logs
UKGovernmentBEIS/inspect_evals
View and analyse Inspect evaluation log files using the Python API. Trigger whenever you need to look at a .eval file yourself without using pre-written scripts.
- 100/100
read-file
openakita/openakita
Read file content for text files. When you need to check file content, analyze code or data, or get configuration values.
- 100/100
read-only-ops
notque/vexjoy-agent
Read-only exploration, inspection, and reporting without modifications.
- 100/100
readable-py
crazyguitar/pysheeet
Readable Python code rules inspired by The Art of Readable Code. Use when writing, reviewing, or refactoring Python code. Enforces short functions, flat control flow, clear naming, readable structure, and Pythonic idioms.
- 100/100
reading-logs
rileyhilliard/claude-essentials
Analyzes logs efficiently through targeted search and iterative refinement. Use when investigating errors, debugging incidents, or analyzing patterns in application logs.
- 100/100
reading-streams
durable-streams/durable-streams
>
- 90/100
readme
diegosouzapw/awesome-omni-skills
README Generator workflow skill. Use this skill when the user needs You are an expert technical writer creating comprehensive project documentation. Your goal is to write a README.md that is absurdly thorough\u2014the kind of documentation you wish every project had and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
readme-beautifier
hylarucoder/hai-stack
README 美化器。接收结构混乱、格式不统一的 README(或同类 markdown 项目文档如 CONTRIBUTING.md、docs/index.md、项目说明.md),输出结构清晰、标题层级正确、列表/代码块/表格格式一致、视觉专业的完整版本,并附一段改动摘要——内容不增不减,只改结构和格式。当用户请求美化、整理、排版、格式化、修复 README,或只是把一份杂乱的 README 丢给你说"太乱了""看下""帮我弄一下"时使用,即使没有明确说"美化"二字。触发词:美化 README、README 美化、整理 README、README 排版、README 格式化、README 太乱了、看下我这个 README、beautify README、fix/format/clean up/tidy/polish/reformat README、reorganize readme、my readme looks messy/ugly、make my README look professional。
- 100/100
readme-blueprint-generator
github/awesome-copilot
'Intelligent README.md generation prompt that analyzes project documentation structure and creates comprehensive repository documentation. Scans .github/copilot directory files and copilot-instructions.md to extract project information, technology stack, architecture, development workflow, coding standards, and testing approaches while generating well-structured markdown documentation with proper formatting, cross-references, and developer-focused content.'
- 100/100
readme-i18n
xixu-me/skills
Use when the user wants to translate a repository README, make a repo multilingual, localize docs, add a language switcher, internationalize the README, or update localized README variants in a GitHub-style repository.
- 100/100
readme-review
686f6c61/alfred-dev
Auditar y mejorar el README del proyecto: estructura, completitud y claridad. Activar ante: mejorar README, auditar README, primera impresion del proyecto, readme incompleto
- 100/100
readme-updater
alirezarezvani/claude-code-tresor
Keep README files current with project changes. Use when project structure changes, features added, or setup instructions modified. Suggests README updates based on code changes. Triggers on significant project changes, new features, dependency changes.
- 90/100
readme-v2
diegosouzapw/awesome-omni-skills
README Generator workflow skill. Use this skill when the user needs You are an expert technical writer creating comprehensive project documentation. Your goal is to write a README.md that is absurdly thorough\u2014the kind of documentation you wish every project had and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
reagent-expiry-alert
aipoch/medical-research-skills
Scan reagent barcodes or IDs, log expiration dates, and generate multi-level alerts before reagent expiry to support laboratory inventory management.
- 100/100
reagent-substitute-scout
aipoch/medical-research-skills
Find validated alternative reagents based on literature citation data.
- 85/100
real-estate-search
NomaDamas/k-skill
Korean apartment/officetel/villa/single-house real transaction price and rent lookups via k-skill-proxy. Based on tae0y's real-estate-mcp and MOLIT public data APIs.
- 100/100
real-time-collab
BuilderIO/agent-native
>-
- 100/100
real-time-sync
BuilderIO/agent-native
>-
- 80/100
real-world-evidence-study-designer
aipoch/medical-research-skills
Designs a structured real-world evidence study using EHR, claims, or registry data, with explicit handling of time zero, eligibility windows, exposure definitions, outcome windows, censoring, confounding control, and target-trial-emulation logic. Use this skill when the user needs study-type design and protocol framing for an observational clinical study based on routine-care data. Do not invent database fields, follow-up completeness, linkage, coding validity, or causal identifiability.
- 100/100
realign
jongwony/epistemic-protocols
Project guide direction line via three-horizon fusion. Invoke with /realign.
- 100/100
reality-checking
elophanto/EloPhanto
Final integration testing and deployment readiness assessment that stops fantasy approvals and requires overwhelming evidence for production certification. Adapted from msitarzewski/agency-agents.
- 100/100
realphonevalidation-automation
ComposioHQ/awesome-claude-skills
"Automate Realphonevalidation tasks via Rube MCP (Composio). Always search tools first for current schemas."
- 100/100
realtime-analytics
TerminalSkills/skills
>-
- 100/100
realtime-audio-architecture
terrylica/cc-skills
Real-time audio playback patterns for macOS Apple Silicon. TRIGGERS - audio jitter, tts choppy, sounddevice
- 100/100
realtime-database
TerminalSkills/skills
>-
- 100/100
reasoning-semiformally
oaustegard/claude-skills
Apply semi-formal certificate reasoning to code analysis — patch verification, fault localization, patch equivalence. Use when reviewing patches, hunting bugs across scopes, comparing fixes, or when code reasoning requires tracing execution across files/modules. Triggers on code review, bug localization, patch comparison, name shadowing, scope analysis, regression checking.
- 100/100
rebuild
ray-project/ray
Rebuild Ray from source — determines the right build mode based on what changed
- 100/100
rebuttal
wanshuiyin/Auto-claude-code-research-in-sleep
Workflow 4: Submission rebuttal pipeline. Parses external reviews, enforces coverage and grounding, drafts a safe text-only rebuttal under venue limits, and manages follow-up rounds. Use when user says \"rebuttal\", \"reply to reviewers\", \"ICML rebuttal\", \"OpenReview response\", or wants to answer external reviews safely.
- 100/100
rebuttal-letter-strategist
aipoch/medical-research-skills
Use rebuttal letter strategist for academic writing workflows that need structured execution, explicit assumptions, and clear output boundaries.
- 100/100
rebuttal-response
Boom5426/Nature-Paper-Skills
Use when responding to journal or conference reviewer comments and you need a structured author response, aligned manuscript edits, and clear decisions about when to clarify, add evidence, concede, or respectfully disagree.
- 100/100
recall
indranilbanerjee/digital-marketing-pro
Recall marketing learnings. Use when: querying what we know about a channel, audience, objective, or past campaign.
- 100/100
recallai-automation
ComposioHQ/awesome-claude-skills
"Automate Recallai tasks via Rube MCP (Composio). Always search tools first for current schemas."
- 100/100
recallmax
diegosouzapw/awesome-omni-skills
RecallMax \u2014 God-Tier Long-Context Memory workflow skill. Use this skill when the user needs FREE \u2014 God-tier long-context memory for AI agents. Injects 500K-1M clean tokens, auto-summarizes with tone/intent preservation, compresses 14-turn history into 800 tokens and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
recallmax-v2
diegosouzapw/awesome-omni-skills
RecallMax \u2014 God-Tier Long-Context Memory workflow skill. Use this skill when the user needs FREE \u2014 God-tier long-context memory for AI agents. Injects 500K-1M clean tokens, auto-summarizes with tone/intent preservation, compresses 14-turn history into 800 tokens and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
recap
Soul-Brews-Studio/arra-oracle-skills-cli
Session orientation and awareness — retro summaries, handoffs, git state, focus. Use when starting a session, after /jump, lost your place, switching context, or when user asks "now", "where are we", "what are we doing", "status", "recap". Do NOT trigger for "standup" or "morning check" (use /standup), or session mining "dig", "past sessions" (use /dig).
- 100/100
recap-lite
Soul-Brews-Studio/arra-oracle-skills-cli
Quick session orientation — git state + last handoff. Lite version for minimal profile. Use when user says "recap", "where are we", "status". For full version with retro summaries and session mining, upgrade to standard (/go standard → /recap).
- 100/100
recce-mcp-dev
DataRecce/recce
Use when modifying recce/mcp_server.py, MCP tool handlers, error classification, or MCP-related tests. Also use when adding new MCP tools or changing tool response formats.
- 100/100
recce-mcp-e2e
DataRecce/recce
Use when MCP server code is modified and needs full E2E verification against a real dbt project. Triggers after changes to recce/mcp_server.py, MCP tool handlers, single-env logic, or error classification. Also use before merging MCP PRs.
- 100/100
cloudflare/receiving-code-review
cloudflare/workerd
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
- 100/100
openai/receiving-code-review
openai/plugins
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
- 100/100
openakita/receiving-code-review
openakita/openakita
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
- 100/100
microsoft/receiving-code-review
microsoft/FluidFramework
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
- 100/100
obra/receiving-code-review
obra/superpowers
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
- 100/100
receiving-code-review-v2
diegosouzapw/awesome-omni-skills
Code Review Reception workflow skill. Use this skill when the user needs Code review requires technical evaluation, not emotional performance and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
receiving-code-review-v3
diegosouzapw/awesome-omni-skills
Code Review Reception workflow skill. Use this skill when the user needs Code review requires technical evaluation, not emotional performance and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
- 100/100
recharts
TerminalSkills/skills
>-
- 100/100
recherche-start
Klotzkette/claude-fuer-deutsches-recht
Recherchefahrplan für eine Rechtsfrage — einschlägige Normen, Rechtsprechungsbereiche, Kommentarliteratur, Suchbegriffe für juris/beck-online/dejure. Hinweise und Rahmen, KEINE geprüften Belege; Studierende recherchieren und verifizieren eigenständig. Lädt, wenn ein Studierender fragt, wo er mit einer Recherche anfangen soll, einen Fahrplan für eine Rechtsfrage benötigt oder Lücken in bestehender Recherche identifizieren möchte.
- 100/100
recherchebericht-erstellen
Klotzkette/claude-fuer-deutsches-recht
Formaler Recherchebericht fuer den Mandanten oder die Akte. Bringt Auftrag Methodik durchsuchte Datenbanken verwendete Suchstrings Klassen Schlagworte Zeitraum Trefferzahlen Treffertabelle und Bewertungen aus Skills neuheit-pruefen erfinderische-taetigkeit-pruefen freedom-to-operate-recherche und patentfamilien-analyse zusammen. Strukturierter Aufbau mit Deckblatt Auftragsbeschreibung Methodik Trefferdokumentation Bewertung Empfehlung Anhang (Suchstrings Klassen Quellenliste). Disclaimer Vorrecherche keine amtliche Recherche mehrfach im Bericht. Output als Markdown-Dokument das die Patentanwaeltin in Word oder PDF weiterverarbeiten kann.
- 100/100
rechnungserstellung-rvg
Klotzkette/claude-fuer-deutsches-recht
Erstellt Honorarrechnungen nach RVG (Anlage 1 VV RVG Anlage 2 RVG Gebuehrentabelle) oder nach Honorarvereinbarung mit Stundensatz. Pflichtangaben § 10 RVG (Aktenzeichen Mandant Gegenstand der Taetigkeit Verguetungstatbestaende Stundensaetze Auslagen Umsatzsteuer Gesamtbetrag Zahlungsweg Belehrung). Reisekosten und Tage- und Abwesenheitsgeld nach VV RVG. Auslagen-Pauschale Nr. 7002 VV RVG. Erzeugt rechtsgueltige Rechnung als PDF und Markdown. Mit Eintrag im Honorar-Tracker.
- 100/100
rechtliche-bewertung-bag-rechtsprechung
Klotzkette/claude-fuer-deutsches-recht
Rechtliche Einordnung von Zeugnisansprüchen nach § 109 GewO und BAG-Rechtsprechung. Beweislastverteilung bei Zeugnisstreitigkeiten, Anspruch auf wohlwollendes Zeugnis und Grenzen der Wahrheitspflicht — für die anwaltliche Praxis.
- 100/100
rechtsargumente-gegenueberstellung
Klotzkette/claude-fuer-deutsches-recht
Erstellt eine tabellarische Gegenueberstellung der Rechtsargumente beider Parteien: Anspruchsgrundlage Einwendungen Einreden Verjaehrungsthema und Pinpoint-Zitate aus Rechtsprechung (BGH OLG EuGH). Keine Wertung welches Argument ueberzeugt. Normen §§ 195-218 BGB Verjaehrung §§ 280 ff. BGB Schadensersatz.
- 100/100
rechtsberatungsstelle-anpassen
Klotzkette/claude-fuer-deutsches-recht
Passt das Beratungsstellenprofil (CLAUDE.md) oder einen Fachbereichsleitfaden (guides/fachbereich.md) gezielt an – ohne den vollen Kaltstart-Ablauf zu durchlaufen. Für kleinere Aktualisierungen: neuer Fachbereich, geänderte Prüfungsgates, aktualisierte Kontakte, Semesterwechsel. Nur für den anleitenden Volljurist.
- 100/100
rechtsberatungsstelle-kaltstart-interview
Klotzkette/claude-fuer-deutsches-recht
Einmalige Ersteinrichtung der Beratungsstelle. Führt den anleitenden Volljuristen durch ein strukturiertes Interview zur Konfiguration des Plugins: Beratungsstellentyp, Rechtsgrundlage, Fachbereiche, Aufsichtsmodell, Verschwiegenheitshinweise, Pädagogikhaltung. Ergebnis wird in CLAUDE.md gespeichert. Aufrufen bei Neugründung oder grundlegender Neuausrichtung der Beratungsstelle.
- 100/100
rechtsfolge-bestimmen
Klotzkette/claude-fuer-deutsches-recht
Bestimmt die Rechtsfolge nach erfolgreicher Subsumtion: Anspruchsinhalt, Hoehe, Tenor, Verwaltungsakt-Inhalt, Strafmass-Rahmen. Unterscheidet Primaeranspruch, Sekundaeranspruch und Nebenansprueche. Gibt Berechnungshinweise fuer Schadensersatz und Vertragsstrafen.
- 100/100
rechtsgeschichte
Klotzkette/claude-fuer-deutsches-recht
Übt deutsche und europäische Rechtsgeschichte für Studierende — römisches Recht und die BGB-Entstehung 1900, NS-Unrechtsjustiz und die Folgen der Radbruchschen Formel, SED-Unrecht und Mauerschützenprozesse, Entstehung des Grundgesetzes nach 1948, Entwicklung des Unionsrechts von der EWG bis zum Vertrag von Lissabon. Lädt, wenn der Nutzer „Rechtsgeschichte\", „BGB Entstehung\", „NS-Justiz\", „SED-Unrecht\", „Radbruchsche Formel\", „GG Genese\" oder „EU-Recht Entwicklung\" sagt.
- 100/100
rechtsmittelbelehrung-zivil
Klotzkette/claude-fuer-deutsches-recht
Erstellt die Rechtsmittelbelehrung nach Paragrafen 232 ZPO 511 ff ZPO 567 ff ZPO. Berufung gegen Endurteile des AG ueber 600 Euro Beschwer Frist ein Monat ab Zustellung Berufungsbegruendung weitere zwei Monate sofortige Beschwerde gegen Beschluesse Frist zwei Wochen. Beschwerdewert Pruefung. Form Schriftform Anwaltszwang vor LG OLG.
- 100/100
rechtsprechung-recherche-strategie
Klotzkette/claude-fuer-deutsches-recht
Gibt eine Strategie fuer die Rechtsprechungsrecherche: wann systeminternes Wissen genuegt, wann Web-Suche bei BVerfG/BGH/BAG/BSG/BVerwG/OLG/EuGH noetig ist. Nennt Fundstellen: curia.europa.eu, dejure.org, openjur, rechtsprechung-im-internet, bundesgerichtshof.de.
- 100/100
rechtsstand-pruefen
Klotzkette/claude-fuer-deutsches-recht
Prueft Rechtsstand eines Patents oder einer Anmeldung im jeweiligen Amts-Register. DPMAregister fuer DE-Schutzrechte EPO Register fuer EP-Schutzrechte USPTO PAIR PEDS fuer US-Patente nationale Register fuer JP CN KR. Liefert Anmeldetag Veroeffentlichungstag Erteilungstag Schutzdauer-Ende Status (anhaengig erteilt zurueckgenommen zurueckgewiesen erloschen nichtig), Einspruchsverfahren laufend abgeschlossen, Nichtigkeitsverfahren laufend abgeschlossen, Jahresgebuehren bezahlt offen, Validierungsstaaten bei EP-Patenten, SPC fuer Arzneimittel und Pflanzenschutzmittel. Quellen werden mit Datum des Abrufs vermerkt. Disclaimer Rechtsstand kann sich taeglich aendern Stichtag-Datum dokumentieren.
- 100/100
rechtstheorie-rechtsphilosophie-anbindung
Klotzkette/claude-fuer-deutsches-recht
Rechtstheoretische und rechtsphilosophische Bezug in Hausarbeit Positivismus Naturrecht Kelsen Hart Dworkin Radbruch Alexy. Ueberlegungen zu Rechtsbegriff Geltungsgrund Auslegung Rechtsfortbildung Gerechtigkeit. Wenn der Sachverhalt grundsaetzliche Fragen aufwirft kann eine kurze theoretische Reflexion die Hausarbeit aufwerten.
- 100/100
recipe-add-integration-tests
shinpr/claude-code-workflows
Add integration/E2E tests to existing codebase using Design Docs
- 100/100
recipe-build
shinpr/claude-code-workflows
Execute decomposed tasks in autonomous execution mode
- 100/100
recipe-design
shinpr/claude-code-workflows
Execute from requirement analysis to design document creation
- 100/100
recipe-diagnose
shinpr/claude-code-workflows
Investigate problem, verify findings, and derive solutions
- 100/100
recipe-front-build
shinpr/claude-code-workflows
Execute frontend implementation in autonomous execution mode
Page 161 of 218