Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
MonsieurBarti
ملف منشئ GitHub

MonsieurBarti

عرض على مستوى المستودعات لـ 77 skills مجمعة عبر 8 مستودعات GitHub.

skills مجمعة
77
مستودعات
8
محدث
2026-05-14
خريطة المستودعات

أين توجد skills

أهم المستودعات حسب عدد skills المجمعة، مع حصتها من كتالوج هذا المنشئ وانتشارها المهني.

#01
tff-mono
27 skills · 2026-05-14
مطوّرو البرمجياتمتخصصو إدارة المشاريعمحللو ضمان جودة البرمجيات والمختبرونمحللو أمن المعلومات
4 فئات مهنية · 100% مصنفة
35%الحصة
#02
The-Forge-Flow-CC
20 skills · 2026-05-01
مطوّرو البرمجياتمحللو ضمان جودة البرمجيات والمختبرونمتخصصو إدارة المشاريعمحللو أمن المعلومات
4 فئات مهنية · 100% مصنفة
26%الحصة
#03
lumen
15 skills · 2026-05-12
مطوّرو الويبمطوّرو البرمجياتأمناء سر المدراء والمساعدون الإداريون التنفيذيونفنيو النشر المكتبيمديرو الشبكات وأنظمة الحاسوب
5 فئات مهنية · 100% مصنفة
19%الحصة
#04
claude-nestjs-hexagonal
9 skills · 2026-03-02
مطوّرو البرمجيات
1 فئات مهنية · 100% مصنفة
12%الحصة
#05
gitnexus-pi
3 skills · 2026-04-12
مطوّرو البرمجياتمحللو ضمان جودة البرمجيات والمختبرون
2 فئات مهنية · 100% مصنفة
3.9%الحصة
#06
hippo-memory-pi
1 skills · 2026-04-12
مطوّرو البرمجيات
1 فئات مهنية · 100% مصنفة
1.3%الحصة
#07
pi-rules
1 skills · 2026-05-12
مطوّرو البرمجيات
1 فئات مهنية · 100% مصنفة
1.3%الحصة
#08
ultra-compress-pi
1 skills · 2026-04-12
عمال معالجة النصوص والطباعة
1 فئات مهنية · 100% مصنفة
1.3%الحصة
مستكشف المستودعات

المستودعات و skills الممثلة

عرض أهم 8 من أصل 27 skills مجمعة في هذا المستودع.
عرض أهم 8 من أصل 20 skills مجمعة في هذا المستودع.
lumen-architecture-doc
مطوّرو البرمجيات

Produce a multi-tab, fact-checked HTML architecture document for a codebase by orchestrating lumen-diagram, lumen-guide, and lumen-fact-check in a fixed sequence. Invoke when user asks for an architecture doc, design doc, or to "document this architecture".

2026-05-12
lumen-launch-deck
مطوّرو الويب

Produce a magazine-quality scroll-snap HTML deck announcing a new feature, release, or milestone. Combines a state recap, metrics charts, a hero diagram, and an assembled slide deck. Invoke for "launch deck", "release deck", "announcement slides".

2026-05-12
lumen-postmortem
مديرو الشبكات وأنظمة الحاسوب

Produce a multi-tab HTML postmortem for a production incident. Combines a scoped recap, a mermaid sequence-diagram timeline, impact charts, and a structured write-up (Summary / Timeline / Impact / Root Cause / Action Items). Invoke for "postmortem", "post-mortem", "incident review".

2026-05-12
lumen-readme-pack
مطوّرو الويب

Produce a multi-tab HTML "project page" combining a project recap, an architecture diagram, 1–2 key-metrics charts, and a narrative guide. Use to showcase a project's current state, architecture, and metrics in one shareable artifact.

2026-05-12
lumen-document-this-project
مطوّرو البرمجيات

Generate a complete documentation set for a project by orchestrating multiple lumen composites (architecture-doc + readme-pack). Higher-altitude than a single composite — produces 2+ HTML artifacts that together rebuild a reader's mental model of the project. Invoke for "document this project", "full docs pack", "doc dump for X".

2026-05-12
lumen-release-pack
مطوّرو البرمجيات

Bundle release artifacts for a tagged release by orchestrating lumen-launch-deck + lumen-readme-pack and producing a "what shipped" archive. Higher-altitude than a single composite — produces multiple HTML artifacts plus a release index. Invoke for "release pack", "release artifacts", "package the release".

2026-05-12
lumen-chart
مطوّرو الويب

Generate single-file HTML+SVG or interactive Chart.js data chart (bar, pie, line, area, scatter, radar, funnel, bubble, table, interactive-bar, interactive-line). Invoke when user provides numeric data and asks for chart, graph, plot, trend, distribution, proportion, or comparison.

2026-05-12
lumen-diagram
مطوّرو البرمجيات

Generate single-file HTML diagram (architecture, flow, sequence, ER, state, gantt, network, dependency graph, AI pattern). Invoke when user asks to draw, diagram, visualize, sketch architecture, show flow, or describes system / pipeline / topology to illustrate.

2026-05-12
عرض أهم 8 من أصل 15 skills مجمعة في هذا المستودع.
api-add-domain-error
مطوّرو البرمجيات

Adds a new domain error to an existing module — extends the module base error, sets error code and monitoring flag, and updates the exception filter mapping. Use when a command or query needs to throw a new business error. Requires /api-add-module.

2026-03-02
api-add-endpoint
مطوّرو البرمجيات

Adds a new HTTP endpoint to an existing controller — request/response DTOs, Swagger decorators, and command/query wiring. Use after the module, entity, and command/query already exist. Requires /api-setup-shared and /api-add-module.

2026-03-02
api-add-command
مطوّرو البرمجيات

Creates a CQRS command + handler + in-memory test in a NestJS hexagonal module. Use when adding a write operation (state change) to a module. Command and handler live in the same file. Requires /api-setup-shared.

2026-03-02
api-add-domain-entity
مطوّرو البرمجيات

Creates a complete domain entity in a NestJS hexagonal module — entity, repository interface, test builder, unit tests, SQL repository, in-memory repository, mapper, and optionally domain events. Supports both standalone entities and AggregateRoot entities with domain event publishing. Use when adding a new aggregate to a module's domain layer.

2026-03-02
api-add-event-handler
مطوّرو البرمجيات

Creates a domain event handler that reacts to events from another module (or the same module). Includes handler class and unit test. Use after domain events have been created with /api-add-domain-entity.

2026-03-02
api-add-query
مطوّرو البرمجيات

Creates a CQRS query + handler + integration test in a NestJS hexagonal module. Use when adding a read operation (data retrieval) to a module. Query and handler live in the same file. Handlers bypass the domain and repository layers entirely — direct PrismaService only. Requires /api-setup-shared.

2026-03-02
api-setup-shared
مطوّرو البرمجيات

Creates all shared infrastructure required for hexagonal NestJS modules — TypedCommand, TypedQuery, TypedCommandBus, TypedQueryBus, CorrelationId decorator, PaginatedQueryBase, BaseDomainError, BaseFeatureExceptionFilter, the BaseLogger pattern (wrapping nestjs-pino), ZodValidationPipe with @ZodSchema decorator, PrismaService + PrismaModule (global), validateEnv helper, CqrsInterceptor (bus observer), LoggingInterceptor (HTTP request logger), DomainEvent base class, SqlRepositoryBase (generic Prisma CRUD + auto event publishing), and IDateProvider + DateProvider + FakeDateProvider (date abstraction for deterministic testing). Run once per project before using other api-* skills.

2026-02-21
api-init-project
مطوّرو البرمجيات

Bootstraps a brand-new NestJS backend with hexagonal architecture — creates the project via the Nest CLI, removes boilerplate, installs the required stack (Prisma, Vitest, pino, CQRS, Fastify, Biome), configures package.json scripts, sets up git hooks via lefthook, creates the project-specific env config, and generates a .claude/CLAUDE.md project guide. Run once on a fresh directory; follow with /api-setup-shared to complete the shared infrastructure.

2026-02-21
عرض أهم 8 من أصل 9 skills مجمعة في هذا المستودع.
عرض 8 من أصل 8 مستودعات
تم تحميل كل المستودعات