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

team

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

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

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

changelog
مطوّرو البرمجيات

Keep a Changelog methodology — loaded by the ship phase to update CHANGELOG.md with user-facing changes, filtering out internal-only commits

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

Generator-evaluator separation and review methodology — loaded by review agents to enforce fresh-context review discipline, Conventional Comments format, and gate verdicts

2026-07-17
documenting-decisions
مطوّرو البرمجيات

Architecture Decision Record creation and management — loaded by planner and orchestrator when significant technical decisions need to be recorded with context and consequences

2026-07-17
eng-design-doc-review
مطوّرو البرمجيات

Adversarially review a technical design document with fresh context before the human gate. Dispatches the built-in `general-purpose` subagent (clean context, no shared history with the design-author) against `docs/plans/<id>/design.md` and presents its verdict — APPROVE, REQUEST CHANGES, or COMMENT. Optional, not part of the QRSPI pipeline. Trigger on "review the design doc", "audit design.md", "is this design ready", or `/eng-design-doc-review`.

2026-07-17
git-commit
مطوّرو البرمجيات

Git commit discipline methodology — loaded by the ship phase to produce well-formed commits following conventional commits format, the 50/72 rule, and atomic commit principles

2026-07-17
product-requirements-doc
متخصصو إدارة المشاريع

Optional PRD methodology — loaded by the questioner agent when a feature request is vague or complex enough to warrant a structured product spec alongside task.md. Produces a PRD artifact that downstream design-author work can ground decisions in.

2026-07-17
technical-design-doc
مطوّرو البرمجيات

Technical design document methodology — loaded by the planner agent when producing implementation plans for features that warrant architecture documentation, trade-off analysis, and rollout planning

2026-07-17
writing-prose
مطوّرو البرمجيات

Clear documentation and readable explanation methodology — loaded by technical-writer agent to write prose and to assess documentation quality, grounded in plain language and readability principles

2026-07-17
test-first-development
محللو ضمان جودة البرمجيات والمختبرون

Acceptance tests as immutable scope fence — loaded by test-architect and orchestrator to enforce test-before-implementation discipline and completion contracts

2026-07-15
systematic-debugging
مطوّرو البرمجيات

Root cause investigation methodology — loaded by agents when debugging failures to enforce evidence-first diagnosis over guess-and-fix approaches

2026-06-27
team-fix
مطوّرو البرمجيات

Compressed bug-fix pipeline — reproduce, write failing test, minimal fix, verify. Skips Question/Research/Design/Structure/Plan phases. Trigger on "/team-fix <bug description>".

2026-06-27
test-driven-bug-fix
محللو ضمان جودة البرمجيات والمختبرون

Test-driven bug fix methodology — loaded by the bug-fix pipeline to enforce reproduce-first, red-green discipline when fixing defects

2026-06-27
version-bump
مطوّرو البرمجيات

Version the Team plugin at land time (DEV-internal, not distributed): decide the SemVer level, compute the next free version against current `main`, update all four version strings, cut the `[Unreleased]` changelog body into a dated `## [X.Y.Z]` section, run the land-time consistency assertion, and commit `chore(version): X.Y.Z`. This is the Team-internal bumper; the generic runtime `/shipit` skill then pushes, waits for CI, and squash-merges. Use when landing a Team PR, or when the user asks to "bump the version" or "version this PR".

2026-06-24
nested-agents
المهن الحاسوبية الأخرى

Guardrails for spawning nested sub-agents from inside a Team pipeline agent (Claude Code >= 2.1.172) — loaded by researcher, implementer, code-reviewer, and security-reviewer. Nested dispatch is a context-economy optimization, never a dependency.

2026-06-24
qrspi-workflow
متخصصو إدارة المشاريع

Worktree-Question-Research-Design-Structure-Plan-Implement-PR phase discipline with gate enforcement — loaded by orchestrator to govern pipeline phase transitions, artifact conventions, and anti-patterns

2026-06-24
shipit
مطوّرو البرمجيات

Land a reviewed pull request: discover the open PR for the current branch, push any unpushed commits, wait for CI to go green, then squash-merge it so the PR title (which may carry a version) lands as the commit subject. Handles a PR that has fallen behind its base (rebase + force-with-lease) and surfaces branch-protection rejections verbatim. Project-agnostic — it knows nothing about how any project versions itself. Use ONLY when the user explicitly says "ship it", "land the PR", "land this", or runs "/shipit"; never auto-fire it — it merges, which is irreversible.

2026-06-24
team-pr
مطوّرو البرمجيات

Open the pull request after verification passes. Updates the changelog, optionally surfaces the tracking ticket, and closes out the topic. Trigger on "open the PR", "open a draft PR", or "/team-pr". To land/merge a reviewed PR (wait for CI, then squash-merge) use the separate /shipit skill — "ship it", "land the PR", and "land this" trigger /shipit, not this skill.

2026-06-24
team
مطوّرو البرمجيات

Full 8-phase autonomous feature implementation pipeline (QRSPI). Trigger on "hey team", "build a feature", "implement end to end", "autonomous implementation", or "/team".

2026-06-24
agent-open-questions
المهن الحاسوبية الأخرى

Protocol a subagent uses to surface open questions to the user. Emit a fenced JSON envelope as the final assistant message and STOP; the orchestrator renders AskUserQuestion and resumes via SendMessage with the user's selections. Load this skill from any agent whose prompt has an interactive step.

2026-06-24
worktree-isolation
مطوّرو البرمجيات

Worktree isolation methodology — loaded by the router to run the entire Team pipeline in one or more isolated git worktrees, enabling parallel /team runs and features that span multiple repositories

2026-06-23
team-worktree
مطوّرو البرمجيات

Prepare one or more isolated git worktrees — one per repository the topic touches. Router action — no agent. Trigger on "set up the worktree", "isolate this work", or "/team-worktree".

2026-06-18
team-design
متخصصو إدارة المشاريع

Align with the user on the approach before any code is written. The design-author MUST present open questions interactively before drafting the ~200-line design document, then a human gate captures approval. Trigger on "design this", "let's align on the approach", or "/team-design".

2026-06-17
team-implement
مطوّرو البرمجيات

Execute the implementation phase. Includes test-first sub-step (writing failing tests, mechanical confirmation gate) and adversarial verification (5 parallel reviewers with hard-gate retry loop). Trigger on "implement this", "execute the plan", or "/team-implement".

2026-06-17
team-plan
متخصصو إدارة المشاريع

Produce the tactical implementation plan from the structure. The plan is an autonomous artifact for the implementer — no human approval gate at this phase (design is the pipeline's only human gate). Trigger on "plan the implementation", "spell out the steps", or "/team-plan".

2026-06-17
team-question
متخصصو إدارة المشاريع

Decompose a feature description, ticket, or issue link into the QRSPI Question artifacts (task.md, questions.md). Trigger on "shape this idea", "decompose this task", or "/team-question".

2026-06-17
team-research
مطوّرو البرمجيات

Research a codebase area before making changes. Dispatches parallel read-only agents (file-finder + researcher) that read questions.md only — never task.md. Trigger on "research this", "explore the codebase for", or "/team-research".

2026-06-17
team-structure
متخصصو إدارة المشاريع

Break the approved design into vertical slices with verification checkpoints. Runs autonomously and advances to PLAN — no human gate (design is the pipeline's only human gate). Trigger on "slice this up", "break the design into steps", or "/team-structure".

2026-06-17
progress-tracking
مطوّرو البرمجيات

Todo-first progress convention for multi-step procedures — loaded by every multi-step agent to track its own steps without drift

2026-06-01
create-team-skill
مطوّرو البرمجيات

Authoring guide for creating a new skill in this plugin, matching the conventions the existing skills already use. Establishes the three decisions every skill must make before any prose is written: how it is invoked (entry point vs building block), how it acquires its input, and how it manages the context window. Proactively invoke this skill (do NOT hand-write a SKILL.md directly) when the user asks to "create a skill", "add a new skill", "scaffold a skill", "write a SKILL.md", or describes new skill functionality they want to build.

2026-05-30
engineering-standards
مطوّرو البرمجيات

Engineering standards for design and implementation methodology -- loaded by planner, implementer, and code-reviewer agents for design-first workflow, implementation standards, and quality checklist

2026-05-30
product-thinking
متخصصو إدارة المشاريعمحللو أبحاث السوق ومتخصصو التسويق

Product-need reasoning lens for "make something people want" — loaded by questioner, design-author, and structure-planner to validate user demand while framing, designing, and slicing scope

2026-05-30
refactoring-to-patterns
مطوّرو البرمجيات

Fowler's refactoring methodology — loaded by the implementer agent when working with existing code to recognize code smells and apply proven transformations

2026-05-30
solid-principles
مطوّرو البرمجيات

SOLID object-oriented design principles methodology — loaded by implementer agent when writing code and by code-reviewer agent when checking for design violations

2026-05-30
beads
المهن الحاسوبية الأخرى

Dolt-powered issue tracker for multi-session work with dependencies and persistent memory across conversation compaction. Use when work spans sessions, has blockers, or needs context recovery after compaction. Trigger with "create task", "what's ready", "track this work", "resume after compaction". Make sure to use this skill whenever managing multi-session work, tracking dependencies, or recovering context.

2026-03-28