Skip to main content

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

webdevcody/go-mailing-list - الصفحة ٢

جمع SkillsMP عدد ٦٧ من skills من webdevcody/go-mailing-list. افتح أي skill لمراجعة مصدره وتفاصيله.

webdevcody/go-mailing-list

عرض ٢٧ من أصل ٦٧ skills مجمعة.

المهنة
مطوّرو البرمجيات
الوصف

Reverse-engineer a brownfield codebase into per-feature spec .md files (acceptance criteria, edge cases, preconditions, testing scenarios) ordered by a dependency graph, so a developer can rebuild the system feature-by-feature on any stack. Specs are…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Diagnose an integration/feature that "should work but didn't" — hooks not firing, status not updating, callbacks not arriving, jobs not running, webhooks silent. Lead with the concrete runtime contract (endpoints, env vars, file paths, log locations) and the…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
محللو ضمان جودة البرمجيات والمختبرون
الوصف

Diagnose and fix failing CI tests on a GitHub pull request. Pulls failing job logs via `gh pr checks` / `gh run view`, reproduces the failure locally, classifies it as real-bug vs. stale-test vs. flake, applies the minimum fix to the correct side (production…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
فنانو المؤثرات الخاصة والمحركون
الوصف

Generate an image from a text prompt using OpenAI's gpt-image-2 API and save it into the project. Use when the user asks to "generate an image", "make a hero image", "create an og image", "generate a logo/illustration/screenshot placeholder", "I need an image…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Hand off a stalled task or stubborn bug to the OpenAI Codex CLI for a second pass — package the original request, what Claude tried, and the live `git status` + `git diff` into a prompt file, then fire `codex exec --model gpt-5.5` headless (fall back to…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
محللو أبحاث السوق ومتخصصو التسويقمتخصصو إدارة المشاريع
الوصف

Brainstorm grounded new-feature ideas for an existing codebase via parallel Explore fan-out, present a 5-item shortlist with WHY (UX/product justification tied to observed gaps), then write the user's pick to specs/ideas/NNN-slug.md in plan-greenfield format.…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مديرو الشبكات وأنظمة الحاسوب
الوصف

List GitHub issues for the current repo as a colorized terminal table — issue number, title, labels (each painted with its actual GitHub label color via ANSI truecolor), author, and age. Supports filters (state, label, assignee, author, search) passed through…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Modify an existing feature — add to it, change how it works, or wire a small new behavior into something that already exists. Use when the user says "modify", "modify this", "modify the X", "enhance", "extend", "add to existing X", "also do Y when Z", "make…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مديرو الشبكات وأنظمة الحاسوب
الوصف

Open a GitHub pull request with a title and Summary/Test-plan body generated from the branch's full commit range and diff against the base branch — not just the latest commit. Pushes the branch with -u when there's no upstream, picks the repo's default base…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو الويب
الوصف

Audit every image referenced by a single UI page/route to find concrete optimization wins — oversized source files vs. rendered slot, wrong format (PNG/JPG that should be WebP/AVIF), missing width/height/sizes/priority, missing lazy-load, files over…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
متخصصو إدارة المشاريع
الوصف

Generate an exhaustive, dependency-ordered feature backlog for a greenfield product idea. Produces a `specs/` directory of numbered stack-agnostic spec files (001-…, 002-…) — each with description, user story, acceptance criteria, edge cases, and test…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مصممو واجهات الويب والرقمية
الوصف

Run a UX polish checklist against any UI change in this project — new components, new buttons/modals, or edits to existing UI — and auto-fix gaps before reporting done. The skill judges which items apply to the specific change, then fixes them inline (not as…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو الويب
الوصف

When the user requests a UX-pattern change (keyboard, focus, dismiss, or feedback-display behavior) on a single instance of a recurring component family (Modal, Dialog, Drawer, Form, Card, Toast), grep for sibling instances, present them per-instance, and —…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Fast-path push — stage everything in the working tree, create ONE auto-generated commit (bypassing the multi-commit grouping of the `commit` skill), then push the current branch's commits to remote `main` after explicit user confirmation. Trigger phrases —…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Find the commit that introduced a regression — a bug in a feature that used to work and is now broken. Walks git history with log/blame and escalates to manual git bisect when commit messages don't reveal the cause. Stops at root-cause identification; user…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Cut a versioned release for a project — bump the manifest version (semver major/minor/patch, default minor), commit, create an annotated git tag, and generate release notes from commits since the last tag. Use when the user says "cut a release", "release…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Safely delete a feature, route, component, endpoint, or module and sweep every piece of dead code the deletion orphans — unused imports, empty files, dead types/helpers/tests/fixtures/docs/i18n keys/env vars/flags/nav links/analytics events/DB columns. Maps…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Reorganize a directory of loose, ungrouped files (images dumped in public/, scripts piled in src/, assets at the root of a feature folder) into a clear grouped layout, then update every reference — imports, string paths, CSS url(), <img src>, OG/metadata…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Walk a developer through a git merge or rebase conflict carefully — read each conflicted file's `<<<<<<<` markers, understand both sides' intent before choosing, present per-file resolutions, and never silently discard one side's work. Handles lockfile…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Autopilot orchestrator for engineering work. Classifies the user's request as CREATE / EVOLVE / REMOVE / FIX, infers a depth mode (fast / balanced / production) from risk + complexity signals, announces the pipeline, then routes to the matching core skill…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
ممثلو خدمة العملاء
الوصف

Recommend the top 1–3 installed skills that fit the user's current task, when they're unsure which to use. Reads the available-skills list from the in-context system-reminder, parses each skill's WHEN-to-use and Skip-for guidance, ranks by specificity, and…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Updates existing project documentation in-place after code changes — bug fixes, new features, tech stack swaps, UX/API changes, env var additions, dependency updates. Edits Swagger/OpenAPI specs, README, CHANGELOG, ADRs, .env.example, setup guides, and inline…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
محللو ضمان جودة البرمجيات والمختبرون
الوصف

Generate a markdown QA test plan a human tester can execute against the current branch — for a new feature, bug fix, or refactor. Produces testing-plans/<slug>.md with required sections (Summary, Scope, Test Users, Preconditions, Environment, Step-by-step…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو الويب
الوصف

Elicit the three slots a small UI tweak needs — location, current behavior, desired behavior — when the user's request is missing one or more, then make the smallest possible change. Use for visual/copy/styling tweaks to a single element or component. Trigger…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Append a new entry to the project's CHANGELOG.md after finishing a feature, fixing a bug, tuning performance, applying a security patch, or before a commit. One chronological markdown file (newest first), bullet points prefixed with a category emoji, concise…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مطوّرو البرمجيات
الوصف

Pre-release dependency upgrade workflow. Detects the project's package managers from lockfiles (any ecosystem — npm, pnpm, yarn, bun, pip, poetry, cargo, go mod), groups outdated packages by risk tier (security advisory / patch / minor / major), checks the…

لغة النص الأصلي: الإنجليزية

آخر تحديث
المهنة
مصممو واجهات الويب والرقمية
الوصف

Socratic UX redesign coach for a single page, route, or component. Re-examines the page's goal, target user, and primary action before touching visuals — then proposes concrete changes (information architecture, button placement, loader choice, page splits,…

لغة النص الأصلي: الإنجليزية

آخر تحديث
عرض ٢٧ من أصل ٦٧ skills مجمعة.