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

ia-frmwrk

يحتوي ia-frmwrk على 86 من skills المجمعة من luanrodrigues، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
86
Stars
2
محدث
2026-04-09
Forks
1
التغطية المهنية
7 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

bee-requesting-code-review
محللو ضمان جودة البرمجيات والمختبرون

Gate 4 of development cycle - dispatches 6 specialized reviewers (code, business-logic, security, test, nil-safety, consequences) in parallel for comprehensive code review feedback.

2026-04-09
bee-dev-chaos-testing
محللو ضمان جودة البرمجيات والمختبرون

Gate 7 of development cycle - ensures chaos tests exist using Toxiproxy to verify graceful degradation under connection loss, latency, and partitions.

2026-04-09
bee-dev-cycle
مطوّرو البرمجيات

Main orchestrator for the 8-gate development cycle system. Loads tasks/subtasks from PM team output and executes through implementation → unit testing → fuzz testing → property testing → integration testing (write) → chaos testing (write) → review → validation gates (Gates 0-7), with state persistence and metrics collection. Gates 4-5 (integration/chaos) write and update test code per unit but only execute tests at end of cycle (deferred execution).

2026-04-09
bee-dev-feedback-loop
مطوّرو البرمجيات

Development cycle feedback system - calculates assertiveness scores, analyzes prompt quality for all agents executed, aggregates cycle metrics, performs root cause analysis on failures, and generates improvement reports to docs/feedbacks/cycle-{date}/.

2026-04-09
bee-dev-frontend-accessibility-react-native
مطوّرو البرمجيات

Gate 1 of the React Native frontend development cycle - ensures all components pass accessibility checks with zero violations: correct accessibilityLabel, accessibilityRole, accessibilityHint, VoiceOver (iOS) and TalkBack (Android) compatibility, and minimum touch target sizes.

2026-04-09
bee-dev-frontend-accessibility
محللو ضمان جودة البرمجيات والمختبرون

Gate 1 of frontend development cycle - ensures all components pass axe-core automated accessibility scans with zero WCAG 2.1 AA violations.

2026-04-09
bee-dev-frontend-accessibility-vuejs
محللو ضمان جودة البرمجيات والمختبرون

Gate 1 of the Vue.js frontend development cycle - ensures all components pass axe-core automated accessibility scans with zero WCAG 2.1 AA violations.

2026-04-09
bee-dev-frontend-e2e-react-native
محللو ضمان جودة البرمجيات والمختبرون

Gate 5 of the React Native frontend development cycle - ensures all user flows from product-designer have passing Detox E2E tests on both iOS (simulator) and Android (emulator/device).

2026-04-09
bee-dev-frontend-e2e
محللو ضمان جودة البرمجيات والمختبرون

Gate 5 of frontend development cycle - ensures all user flows from product-designer have passing E2E tests with Playwright across browsers.

2026-04-09
bee-dev-frontend-e2e-vuejs
محللو ضمان جودة البرمجيات والمختبرون

Gate 5 of the Vue.js frontend development cycle - ensures all user flows from product-designer have passing E2E tests with Playwright across browsers.

2026-04-09
bee-dev-frontend-performance-react-native
مطوّرو البرمجيات

Gate 6 of the React Native frontend development cycle - ensures JS bundle size within budget, Hermes engine enabled, FlatList/FlashList correctly used, image optimization applied, and no unnecessary re-renders detected. Covers React Native-specific optimizations including memo, useCallback, useMemo, and FlashList for performant list rendering.

2026-04-09
bee-dev-frontend-performance
محللو ضمان جودة البرمجيات والمختبرون

Gate 6 of frontend development cycle - ensures Core Web Vitals compliance, Lighthouse performance score > 90, and bundle size within budget.

2026-04-09
bee-dev-frontend-performance-vuejs
محللو ضمان جودة البرمجيات والمختبرون

Gate 6 of the Vue.js frontend development cycle - ensures Core Web Vitals compliance, Lighthouse performance score > 90, and bundle size within budget. Covers Nuxt 3-specific optimizations including useAsyncData, useLazyFetch, and NuxtImg.

2026-04-09
bee-dev-frontend-visual-react-native
محللو ضمان جودة البرمجيات والمختبرون

Gate 4 of the React Native frontend development cycle - ensures all components have Jest snapshot tests covering all states, both platforms (iOS and Android), and edge cases using React Native Testing Library renders.

2026-04-09
bee-dev-frontend-visual
محللو ضمان جودة البرمجيات والمختبرون

Gate 4 of frontend development cycle - ensures all components have snapshot tests covering all states, viewports, and edge cases.

2026-04-09
bee-dev-frontend-visual-vuejs
محللو ضمان جودة البرمجيات والمختبرون

Gate 4 of the Vue.js frontend development cycle - ensures all components have snapshot tests covering all states, viewports, and edge cases using Vitest snapshots.

2026-04-09
bee-dev-fuzz-testing
محللو ضمان جودة البرمجيات والمختبرون

Gate 4 of development cycle - ensures fuzz tests exist with proper seed corpus to discover edge cases, crashes, and unexpected input handling.

2026-04-09
bee-dev-implementation
مطوّرو البرمجيات

Gate 0 of the development cycle. Executes code implementation using the appropriate specialized agent based on task content and project language. Handles TDD workflow with RED-GREEN phases. Follows project standards defined in docs/PROJECT_RULES.md.

2026-04-09
bee-dev-integration-testing
محللو ضمان جودة البرمجيات والمختبرون

Gate 6 of development cycle - ensures integration tests pass for all external dependency interactions using real containers via Docker Compose + RefreshDatabase.

2026-04-09
bee-dev-multi-tenant
مطوّرو البرمجيات

Multi-tenant development cycle orchestrator following Bee Standards. Auto-detects the service stack (PostgreSQL, MongoDB, Redis, RabbitMQ, S3), then executes a gate-based implementation using tenantId from JWT for database-per-tenant isolation via stancl/tenancy or spatie/multitenancy packages (TenantManager, TenantService). MUST install and configure the tenancy package first; auth middleware depends on it. Both are required dependencies. Each gate dispatches bee:backend-engineer-php with context and section references. The agent loads multi-tenant.md via WebFetch and has all code examples.

2026-04-09
bee-dev-property-testing
محللو ضمان جودة البرمجيات والمختبرون

Gate 5 of development cycle - ensures property-based tests exist to verify domain invariants hold for all randomly generated inputs.

2026-04-09
bee-dev-unit-testing
محللو ضمان جودة البرمجيات والمختبرون

Gate 1 of development cycle - ensures unit test coverage meets threshold (85%+) for all acceptance criteria using TDD methodology.

2026-04-09
bee-using-dev-team
مطوّرو البرمجيات

16 specialist developer agents for backend (PHP), database, frontend (React + Vue.js + React Native/Expo), design, UI implementation, QA (backend + frontend), and SRE. Dispatch when you need deep technology expertise.

2026-04-09
bee-using-pm-team
متخصصو إدارة المشاريع

12 pre-dev workflow skills + 4 research agents organized into Small Track (4 gates, <2 days) and Large Track (9 gates, 2+ days) for systematic feature planning with research-first approach.

2026-04-09
delivery-reporting
مطوّرو البرمجيات

Delivery reporting skill for creating visual executive presentations of squad deliveries (engineering, product, design). Analyzes Git repositories to extract business value from technical changes and generates HTML slide presentations with customizable visual identity.

2026-04-09
bee-executive-reporting
متخصصو إدارة المشاريع

Executive communication and reporting skill for creating dashboards, status summaries, and board packages. Focuses on actionable insights for leadership.

2026-04-09
bee-resource-allocation
متخصصو إدارة المشاريع

Resource capacity planning and allocation skill for managing people and skills across multiple projects. Identifies conflicts, gaps, and optimization opportunities.

2026-04-09
bee-risk-management
متخصصو إدارة المشاريع

Portfolio-level risk management skill for identifying, assessing, and mitigating risks across multiple projects. Maintains RAID logs and tracks risk responses.

2026-04-09
bee-using-pmo-team
متخصصو إدارة المشاريع

6 specialist PMO agents for portfolio management, resource planning, governance, risk analysis, executive reporting, and delivery reporting. Dispatch when you need portfolio-level oversight.

2026-04-09
beebrainstorming
مطوّرو البرمجيات

Socratic design refinement - transforms rough ideas into validated designs through structured questioning, alternative exploration, and incremental validation.

2026-03-19
beeexecuting-plans
مطوّرو البرمجيات

Controlled plan execution with human review checkpoints - loads plan, executes in batches, pauses for feedback. Supports one-go (autonomous) or batch modes.

2026-03-19
beeexplore-codebase
مطوّرو البرمجيات

Autonomous two-phase codebase exploration - first discovers natural perspectives (layers, components, boundaries), then dispatches adaptive deep-dive explorers based on what was discovered. Synthesizes findings into actionable insights.

2026-03-19
beefinishing-a-development-branch
مطوّرو البرمجيات

Branch completion workflow - guides merge/PR/cleanup decisions after implementation is verified complete.

2026-03-19
beelinting-codebase
مطوّرو البرمجيات

Parallel lint fixing pattern - runs lint checks, groups issues into independent streams, and dispatches AI agents to fix all issues until the codebase is clean.

2026-03-19
beeproduction-readiness-audit
مطوّرو البرمجيات

Comprehensive bee-standards-aligned 44-dimension production readiness audit. Detects project stack, loads Bee standards via WebFetch, and runs in batches of 10 explorers appending incrementally to a single report file. Categories - Structure (pagination, errors, routes, bootstrap, runtime, core deps, naming, domain modeling, nil-safety, api-versioning, resource-leaks), Security (auth, IDOR, SQL, validation, secret-scanning, data-encryption, multi-tenant, rate-limiting, cors), Operations (telemetry, health, config, connections, logging, resilience, graceful-degradation), Quality (idempotency, docs, debt, testing, dependencies, performance, concurrency, migrations, linting, caching), Infrastructure (containers, hardening, cicd, async, makefile, license). Produces scored report (0-430, max 440 with multi-tenant) with severity ratings and standards cross-reference.

2026-03-19
beerelease-guide-info
مطوّرو البرمجيات

Generate Ops Update Guide from Git Diff. Produces internal Operations-facing update/migration guides based on git diff analysis. Supports STRICT_NO_TOUCH (default) and TEMP_CLONE_FOR_FRESH_REFS modes. Includes tag auto-detection and commit log analysis.

2026-03-19
beetest-driven-development
محللو ضمان جودة البرمجيات والمختبرون

RED-GREEN-REFACTOR implementation methodology - write failing test first, minimal implementation to pass, then refactor. Ensures tests verify behavior.

2026-03-19
beeusing-git-worktrees
مطوّرو البرمجيات

Isolated workspace creation - creates git worktrees with smart directory selection and safety verification for parallel feature development.

2026-03-19
beevisual-explainer
مطوّرو الويب

Generate beautiful, self-contained HTML pages that visually explain systems, code changes, plans, and data. Use when the user asks for a diagram, architecture overview, diff review, plan review, project recap, comparison table, or any visual explanation of technical concepts. Also use proactively when you are about to render a complex ASCII table (4+ rows or 3+ columns) — present it as a styled HTML page instead.

2026-03-19
beewriting-plans
مطوّرو البرمجيات

Creates comprehensive implementation plans with exact file paths, complete code examples, and verification steps for engineers with zero codebase context.

2026-03-19
عرض أهم 40 من أصل 86 skills مجمعة في هذا المستودع.