Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
Dépôt GitHub

engineering-skills

engineering-skills contient 65 skills collectées depuis vindreshsingh, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
65
Stars
0
mis à jour
2026-06-24
Forks
0
Couverture métier
10 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

skill-router
Autres occupations informatiques

Meta-skill that routes a task to the right engineering skill. Load this at the start of a session or when unsure which skill applies — it maps intent to the process that should govern the work.

2026-06-24
contract-testing
Analystes en assurance qualité des logiciels et testeurs

Catches breaking changes between services before they ship, by testing the contract each consumer actually depends on instead of spinning up the whole system. Use when services deploy independently, when a provider API change could break a consumer, or when end-to-end integration tests are too slow and flaky to guard every service boundary.

2026-06-22
experimentation
Développeurs de logiciels

Proves whether a change actually moves the metric, with a valid A/B test instead of a guess — a hypothesis, a primary metric, a pre-computed sample size, guardrail metrics, and an honest readout. Use when shipping a change meant to improve a number (conversion, retention, performance), running an A/B or holdout, or deciding whether a feature "worked."

2026-06-22
feature-flags
Développeurs de logiciels

Decouples deploy from release using feature flags — ship code dark, roll out gradually, kill instantly, and remove the flag once it's done. Use when releasing risky or large changes, rolling out by percentage/cohort, delivering A/B variants, or when stale flags are accumulating as debt.

2026-06-22
threat-modeling
Analystes en sécurité de l'information

Finds security risks at design time — before code exists — by mapping the system, enumerating how it could be attacked, and deciding what to do about each threat. Use when designing a feature that touches auth, data, money, or external input, when changing a trust boundary, or when a security-sensitive change needs a structured risk pass rather than a code-level review.

2026-06-22
agent-memory
Autres occupations informatiques

Designs durable, curated memory that an agent carries across sessions — what to persist, how to scope and retrieve it, and how to stop it from drifting or poisoning later runs. Use when an agent needs to remember decisions, preferences, or project facts beyond one context window, or when stale/over-generalized memory is corrupting its behavior.

2026-06-22
agent-verification
Analystes en assurance qualité des logiciels et testeurs

Stops an AI agent from declaring "done" on work it hasn't actually finished, by separating generation from evaluation and refusing self-graded completion. Use whenever an agent reports a task complete — especially in autonomous or long-running runs — to catch early termination, self-grading bias, and gamed tests before the work is trusted or merged.

2026-06-22
autonomous-loops
Autres occupations informatiques

Designs and supervises an autonomous agent loop (a /goal- or /loop-style run that prompts itself until a verifiable stop) so it ships work you can trust instead of accumulating silent errors. Use when setting up an agent to run unattended, on a schedule, or in a self-prompting cycle — and to decide when NOT to loop.

2026-06-22
long-running-agents
Autres occupations informatiques

Keeps an agent (or a planner/worker/judge fleet) coherent across hours or days and thousands of model calls — using external plan and progress files, checkpoint-and-resume, and context compaction so the run survives context limits, crashes, and drift. Use when a task is too big for one context window or must run unattended over a long horizon.

2026-06-22
marketing-router
Analystes en études de marché et spécialistes en marketing

Routes marketing tasks to the right skill and agent in the marketing team. Load when you need to market a product, grow traffic, write content, post on social, improve SEO, or engage a community — and you're not sure which marketing skill or agent to use.

2026-06-22
launch-campaign
Analystes en études de marché et spécialistes en marketing

Turns a shipped feature into a complete go-to-market launch kit — positioning, seeded community, SEO landing, launch content, a social post pack, email and referral loops, and a measurement plan — by running the marketing persona team in the correct order with gates. Use after a feature is released (post launch-readiness) when you need to actually market it, not just one blog post or tweet.

2026-06-22
product-discovery
Spécialistes en gestion de projets

Turns a raw idea into a decision-ready discovery package — validated problem, PRD with scope and success metrics, RFC handoff, and an ordered task breakdown — by running the PM persona trio (business-analyst, product-manager, product-analyst) through the Define and Plan phases. Use at the front of a feature when you have a one-line idea and need a buildable, measurable plan before any code.

2026-06-22
skill-harvest
Autres occupations informatiques

Captures a hard-won lesson from the current session back into the skill library before it evaporates. Use at the end of non-trivial work — after a tricky debug, a repeated mistake, a workflow that finally worked, or a skill that misfired or was ignored. Closes the self-improving loop by triaging the lesson and handing the keeper to skill-creator.

2026-06-22
orchestrated-delivery
Développeurs de logiciels

Drives a feature end-to-end through the full lifecycle — define, plan, build, verify, review, ship — loading the right skill and persona at each phase, gating on sign-off, and dispatching independent work to parallel subagents. Use for any non-trivial feature or project, not a single small edit.

2026-06-21
parallel-subagents
Développeurs de logiciels

Dispatches independent tasks to parallel subagents and integrates their results for faster, focused execution. Use when a plan has multiple independent tasks, or a task is large enough to delegate to a fresh focused agent.

2026-06-21
accessibility
Concepteurs web et d'interfaces numériques

Builds UI that everyone can use — keyboard, screen reader, low vision, reduced motion, and motor differences. Use when creating or changing any user-facing interface, implementing custom widgets, fixing a11y bugs, or preparing for an audit.

2026-06-21
agent-guardrails
Autres occupations informatiques

Always-on safety boundaries for AI agents — blocks destructive data operations, secret exfiltration, and security-breaking actions unless the user explicitly approves. Load at every session start and before any tool use that touches data, credentials, or production systems.

2026-06-21
browser-checks
Analystes en assurance qualité des logiciels et testeurs

Verifies web changes by exercising them in a real browser with DevTools — console, network, interaction, states, and layout. Use after any UI or front-end change, when debugging browser-only bugs, or before claiming a web change is done.

2026-06-21
caching-strategy
Développeurs de logiciels

Adds caching that speeds reads without serving stale or wrong data. Use when a read is expensive and repeated, when adding or tuning a cache layer, or when debugging stale-data and invalidation bugs.

2026-06-21
context-curation
Autres occupations informatiques

Manages what information an AI agent works from so context stays relevant, grounded, and small. Use when a task spans many files, when responses drift or hallucinate, when writing project rules or agent instructions, when a long session degrades, or when designing prompts and agent tools that carry context.

2026-06-21
data-modeling
Architectes de bases de données

Designs data schemas and queries that stay correct and fast as data grows. Use when creating or changing a database schema, designing tables/collections, adding indexes, fixing slow queries, planning backfills, or choosing how data is stored and accessed at scale.

2026-06-21
decision-docs
Développeurs de logiciels

Captures architectural decisions and the reasoning behind them (ADRs) and keeps docs useful. Use when making a significant technical choice, recording what an RFC or experiment decided, when documentation is missing, stale, or misleading, or when future maintainers will ask "why not X?"

2026-06-21
dependency-hygiene
Développeurs de logiciels

Manages third-party dependencies safely — vetting, pinning, updating, and supply-chain risk. Use when adding a library, upgrading or removing one, reacting to a security advisory, auditing what a project pulls in, or reviewing a PR that changes the dependency tree.

2026-06-21
design-handoff
Développeurs web

Turns a visual design into faithful, maintainable front-end code. Use when implementing a mockup or Figma file, matching a design spec, building against a design system, or reviewing how closely an implementation tracks its design.

2026-06-21
e2e-testing
Analystes en assurance qualité des logiciels et testeurs

Writes and runs end-to-end tests that prove critical user flows work in a real browser. Use when unit tests pass but user journeys need verification, before release of UI flows, or when regressions happen only in full-stack integration.

2026-06-21
fault-recovery
Développeurs de logiciels

A disciplined method for debugging and recovering from failures. Use when something breaks, behaves unexpectedly, a test fails, an error appears, or a bug is intermittent — instead of guessing at fixes or stacking random edits.

2026-06-21
finops-budget
Développeurs de logiciels

Controls cloud and SaaS spend — cost visibility, budgets, alerts, and right-sizing. Use when bills spike, planning infra for a feature, or setting cost guardrails before scale.

2026-06-21
git-flow
Développeurs de logiciels

Sound git practice — focused commits, clear messages, clean branches, safe history. Use when committing, branching, opening or updating a PR, merging, resolving conflicts, cutting a release, or recovering from a git mistake.

2026-06-21
hardening
Analystes en sécurité de l'information

Applies security fundamentals — input validation, authorization, secret handling, and safe defaults. Use when handling untrusted input, auth, sensitive data, webhooks, LLM prompts, file uploads, or reviewing code for vulnerabilities.

2026-06-21
i18n-l10n
Concepteurs web et d'interfaces numériques

Internationalizes and localizes products — strings, locales, formats, RTL, and translation workflow. Use when adding languages, fixing locale bugs, or expanding to non-English markets.

2026-06-21
idea-shaping
Spécialistes en gestion de projets

Turns a vague idea into a clear, evaluated problem statement before any spec or code. Use when a request is a one-liner, the problem is fuzzy, you're choosing between directions, or you're not yet sure the idea is worth building.

2026-06-21
incident-response
Administrateurs de réseaux et de systèmes informatiques

Handles production incidents — mitigate first, diagnose second, learn blamelessly after. Use when something is broken in production, an alert is firing, users are impacted, coordinating response, or running a postmortem.

2026-06-21
incremental-delivery
Développeurs de logiciels

Builds in small, verified increments instead of one big batch. Use when implementing any feature or change — slice vertically, prove each step works, commit at green, then move to the next.

2026-06-21
interface-design
Développeurs de logiciels

Designs clear, stable contracts for APIs, modules, events, and library boundaries. Use when adding or changing an endpoint, public function, schema, config, or any surface other code or teams depend on.

2026-06-21
launch-readiness
Développeurs de logiciels

Verifies a change is truly ready to ship — rollout plan, monitoring, rollback, and communication. Use before deploying or releasing to production, cutting a release, or expanding rollout to more users.

2026-06-21
llm-feature-engineering
Développeurs de logiciels

Builds reliable product features on top of LLMs — prompts, tools, evals, and guardrails. Use when adding AI/LLM functionality, designing prompts or agent tools, fixing flaky model behavior, or shipping and maintaining a model-powered feature in production.

2026-06-21
community-engagement
Analystes en études de marché et spécialistes en marketing

Builds and nurtures user community — welcome flows, discussions, feedback loops, events, and retention. Use when you need users to engage on your page, stick around, refer others, or when launching in Discord, forums, or product communities.

2026-06-21
content-marketing
Analystes en études de marché et spécialistes en marketing

Creates long-form marketing content that educates and converts — blog posts, tutorials, newsletters, case studies, and landing copy. Use when you need articles, guides, launch posts, or email content that drives developer engagement and sign-ups.

2026-06-21
email-nurture
Analystes en études de marché et spécialistes en marketing

Designs email sequences that onboard, educate, and retain users — welcome series, drip campaigns, and re-engagement. Use when sign-ups don't activate, users go quiet, or you need automated nurture beyond social posts.

2026-06-21
growth-strategy
Analystes en études de marché et spécialistes en marketing

Builds a go-to-market plan for a product — positioning, ICP, channel mix, messaging, and campaign calendar. Use when launching a product, planning marketing, choosing channels, or aligning the growth team on what to say and where.

2026-06-21
Affichage des 40 principaux skills collectés sur 65 dans ce dépôt.