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

envilder

يحتوي envilder على 31 من skills المجمعة من macalbert، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
31
Stars
137
محدث
2026-07-11
Forks
5
التغطية المهنية
7 فئات مهنية · 100% مصنفة
مستكشف المستودعات

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

code-bug-investigation
مطوّرو البرمجيات

Workflow for investigating and reproducing bugs before fixing via TDD. Use when a bug report or GitHub issue is received. Covers issue fetching, root cause analysis, reproduction planning, and handoff to TDD cycle.

2026-07-11
code-quality-crap
محللو ضمان جودة البرمجيات والمختبرون

CRAP score quality gate for code complexity and test coverage. Use when reviewing methods for complexity risk, deciding whether to split methods, or determining minimum test coverage requirements.

2026-07-11
code-refactoring
مطوّرو البرمجيات

Code smell detection and safe incremental refactoring patterns. Use when improving code structure, reducing technical debt, or cleaning up after a TDD cycle. Covers SOLID principles, smell catalog, and the propose-apply workflow.

2026-07-11
code-review-perspectives
محللو ضمان جودة البرمجيات والمختبرون

Five independent analysis perspectives for code review: correctness, architecture, security, conventions, and complexity. Use when reviewing PRs, commits, or local changes. Includes severity model and output format.

2026-07-11
common-architecture-decisions
مطوّرو البرمجيات

Index of Architecture Decision Records (ADRs) for cross-cutting technical decisions. Use when making design choices, reviewing proposals for consistency with prior decisions, or onboarding to understand why specific tools or patterns were chosen. Covers test tooling, SDK architecture, code quality, and acceptance test infrastructure.

2026-07-11
common-git
مطوّرو البرمجيات

Git commit messages, PR workflow, and branching strategy using Conventional Commits and Semantic Versioning. Use when creating commits, pull requests, or managing Git workflow.

2026-07-11
common-security
محللو أمن المعلومات

Security guardrails for Envilder (CLI, GitHub Action, SDKs, CDK, website). Covers secret handling, credential hygiene, supply chain safety, input validation, and CI/CD security. Use when reviewing code for security, handling secrets, validating CLI input, or reviewing GitHub Actions workflows.

2026-07-11
common-testing-conventions
محللو ضمان جودة البرمجيات والمختبرون

Mandatory testing conventions including AAA pattern, test naming, and assertions across all stacks (.NET, TypeScript, Python). Use when writing unit tests, integration tests, E2E tests, or verifying mock interactions.

2026-07-11
core-testing
محللو ضمان جودة البرمجيات والمختبرون

Apply Envilder testing conventions for Vitest unit tests and LocalStack e2e tests. Use when adding or updating tests for command handlers, domain entities, adapters, CLI, or GitHub Action flows.

2026-07-11
doc-maintenance
مطوّرو البرمجيات

Workflow for maintaining changelogs, READMEs, and documentation files. Use when adding changelog entries, updating docs after code changes, or synchronizing documentation with current behavior. Covers changelog categories, entry format, constraints, and validation.

2026-07-11
doc-sync
مطوّرو البرمجيات

Audit and synchronize documentation across website, READMEs, and docs/. Use when verifying docs are aligned after feature changes, SDK updates, CLI changes, or release preparation. Detects drift between website content, markdown docs, and SDK READMEs.

2026-07-11
dotnet-testing
محللو ضمان جودة البرمجيات والمختبرون

Mandatory testing conventions for .NET (xUnit, AwesomeAssertions). Use for unit, integration, or acceptance tests with xUnit, Testcontainers, or Playwright.

2026-07-11
grill-me
مطوّرو البرمجيات

Grilling session that challenges a plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when stress-testing a plan, exploring trade-offs, validating a design, or refining domain language.

2026-07-11
python-test-doubles
محللو ضمان جودة البرمجيات والمختبرون

Test doubles with unittest.mock (Mock, AsyncMock, patch) and Mother pattern. Use when creating test data, mocking dependencies, or setting up fixtures in Python tests.

2026-07-11
python-testing
محللو ضمان جودة البرمجيات والمختبرون

Mandatory testing conventions including AAA pattern, test naming, assertions, and mocks. Use for unit, integration, or E2E tests with pytest, unittest, pytest-asyncio, or Playwright.

2026-07-11
release-coherence
مطوّرو البرمجيات

Unified release coherence workflow for any component (CLI, GHA, or SDK). Use when bumping a version, preparing a release, or verifying that all documentation surfaces are updated after a version change. Orchestrates changelog, ROADMAP, website, and docs updates. Delegates to doc-maintenance, sdk-release-checklist, and doc-sync skills as needed.

2026-07-11
sdk-acceptance-testing
محللو ضمان جودة البرمجيات والمختبرون

Acceptance testing patterns for Envilder SDKs using TestContainers (LocalStack for AWS SSM, Lowkey Vault for Azure Key Vault). Use when adding acceptance tests to any SDK, creating container wrappers, or updating CI workflows for SDK test infrastructure.

2026-07-11
sdk-implementation-guide
مطوّرو البرمجيات

Operational guide for implementing a new Envilder runtime SDK. Covers folder structure, API surface (Tier 1 + Tier 2), provider contract, naming conventions, sync/async model, internal vs public separation, vanity imports, and testing skeleton. Use when creating Go, Java, PHP, Rust, or any future SDK.

2026-07-11
sdk-release-checklist
مطوّرو البرمجيات

Checklist for adding a new SDK or releasing a new SDK version. Covers code, tests, website integration (docs page, version badge, changelog sidebar, i18n keys), and CI wiring. Use when creating a new runtime SDK, bumping an SDK version, or auditing that all integration points are connected.

2026-07-11
to-issues
متخصصو إدارة المشاريع

Break a plan or feature into vertical-slice GitHub issues. Each issue is a tracer bullet: independently deliverable, testable, and mergeable. Use when decomposing work from ROADMAP.md, a PRD, or a conversation.

2026-07-11
typescript-cdk-testing
محللو ضمان جودة البرمجيات والمختبرون

AWS CDK testing patterns including snapshot tests, fine-grained assertions with Template.fromStack(), and normalization strategies. Use when writing or reviewing CDK infrastructure tests.

2026-07-11
typescript-test-doubles
محللو ضمان جودة البرمجيات والمختبرون

Test doubles with Vitest (vi.fn, vi.mock, vi.spyOn) and Mother pattern. Use when creating test data, mocking dependencies, or setting up module mocks in TypeScript tests.

2026-07-11
typescript-testing
محللو ضمان جودة البرمجيات والمختبرون

Mandatory testing conventions for TypeScript stacks (Vitest for CLI/SDK/Website/CDK). Use for unit, integration, or E2E tests with Vitest or Playwright.

2026-07-11
website-content-strategy
محللو أبحاث السوق ومتخصصو التسويق

Content strategy and audience-aware guidelines for the Envilder website. Use when writing page copy, structuring documentation sections, or crafting messaging that targets both developers and technical leaders (CTOs). Provides product context and selling points per audience.

2026-07-11
website-design-system
مصممو واجهات الويب والرقمية

Envilder website design system: themes, CSS variables, breakpoints, spacing, typography, and component patterns. Use when creating or editing Astro components, adding CSS, or styling website pages. Ensures visual consistency across retro and light themes.

2026-07-11
website-i18n
مطوّرو الويب

Envilder website internationalization workflow. Use when adding, editing, or reviewing translated strings, creating localized pages, or verifying i18n completeness. Covers the full lifecycle from type definition to locale files.

2026-07-11
website-responsive-validation
محللو ضمان جودة البرمجيات والمختبرون

Playwright-based visual validation procedure for Envilder website changes. Use when verifying responsiveness across mobile, tablet, and desktop breakpoints. Covers the validation workflow, viewport sizes, theme checking, and when to trigger validation.

2026-07-11
workflow-pr-sync
مطوّرو البرمجيات

Create or update a GitHub pull request with an auto-generated title and description from branch commits. Use when opening a PR, syncing PR description, or preparing a branch for review.

2026-07-11
workflow-smart-commit
مطوّرو البرمجيات

Analyze staged changes and create a conventional commit with an auto-generated message. Use when committing code, staging changes, or generating commit messages.

2026-07-11
dotnet-test-doubles
محللو ضمان جودة البرمجيات والمختبرون

Test doubles including Fakes (Bogus), Dummies (AutoFixture), Stubs, Spies, and Mocks (NSubstitute). Use when creating test data, mocking dependencies, or setting up HTTP mocks with WireMock.Net.

2026-05-01
zoom-out
مطوّرو البرمجيات

Zoom out to a higher abstraction level. Produces a map of relevant modules, callers, and data flow. Use when unfamiliar with a code area or needing to understand how a piece fits into the bigger picture.

2026-05-01