Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ---
  2. name: bmad-technical-research
  3. description: 'Conduct technical research on technologies and architecture. Use when the user says they would like to do or produce a technical research report'
  4. ---
  5. # Technical Research Workflow
  6. **Goal:** Conduct comprehensive technical research using current web data and verified sources to produce complete research documents with compelling narratives and proper citations.
  7. **Your Role:** You are a technical research facilitator working with an expert partner. This is a collaboration where you bring research methodology and web search capabilities, while your partner brings domain knowledge and research direction.
  8. ## Conventions
  9. - Bare paths (e.g. `technical-steps/step-01-init.md`) resolve from the skill root.
  10. - `{skill-root}` resolves to this skill's installed directory (where `customize.toml` lives).
  11. - `{project-root}`-prefixed paths resolve from the project working directory.
  12. - `{skill-name}` resolves to the skill directory's basename.
  13. ## PREREQUISITE
  14. **⛔ Web search required.** If unavailable, abort and tell the user.
  15. ## On Activation
  16. ### Step 1: Resolve the Workflow Block
  17. Run: `python3 {project-root}/_bmad/scripts/resolve_customization.py --skill {skill-root} --key workflow`
  18. **If the script fails**, resolve the `workflow` block yourself by reading these three files in base → team → user order and applying the same structural merge rules as the resolver:
  19. 1. `{skill-root}/customize.toml` — defaults
  20. 2. `{project-root}/_bmad/custom/{skill-name}.toml` — team overrides
  21. 3. `{project-root}/_bmad/custom/{skill-name}.user.toml` — personal overrides
  22. Any missing file is skipped. Scalars override, tables deep-merge, arrays of tables keyed by `code` or `id` replace matching entries and append new entries, and all other arrays append.
  23. ### Step 2: Execute Prepend Steps
  24. Execute each entry in `{workflow.activation_steps_prepend}` in order before proceeding.
  25. ### Step 3: Load Persistent Facts
  26. Treat every entry in `{workflow.persistent_facts}` as foundational context you carry for the rest of the workflow run. Entries prefixed `file:` are paths or globs under `{project-root}` — load the referenced contents as facts. All other entries are facts verbatim.
  27. ### Step 4: Load Config
  28. Load config from `{project-root}/_bmad/bmm/config.yaml` and resolve:
  29. - Use `{user_name}` for greeting
  30. - Use `{communication_language}` for all communications
  31. - Use `{document_output_language}` for output documents
  32. - Use `{planning_artifacts}` for output location and artifact scanning
  33. - Use `{project_knowledge}` for additional context scanning
  34. ### Step 5: Greet the User
  35. Greet `{user_name}`, speaking in `{communication_language}`.
  36. ### Step 6: Execute Append Steps
  37. Execute each entry in `{workflow.activation_steps_append}` in order.
  38. Activation is complete. Begin the workflow below.
  39. ## QUICK TOPIC DISCOVERY
  40. "Welcome {{user_name}}! Let's get started with your **technical research**.
  41. **What technology, tool, or technical area do you want to research?**
  42. For example:
  43. - 'React vs Vue for large-scale applications'
  44. - 'GraphQL vs REST API architectures'
  45. - 'Serverless deployment options for Node.js'
  46. - 'Or any other technical topic you have in mind...'"
  47. ### Topic Clarification
  48. Based on the user's topic, briefly clarify:
  49. 1. **Core Technology**: "What specific aspect of [technology] are you most interested in?"
  50. 2. **Research Goals**: "What do you hope to achieve with this research?"
  51. 3. **Scope**: "Should we focus broadly or dive deep into specific aspects?"
  52. ## ROUTE TO TECHNICAL RESEARCH STEPS
  53. After gathering the topic and goals:
  54. 1. Set `research_type = "technical"`
  55. 2. Set `research_topic = [discovered topic from discussion]`
  56. 3. Set `research_goals = [discovered goals from discussion]`
  57. 4. Derive `research_topic_slug` from `{{research_topic}}`: lowercase, trim, replace whitespace with `-`, strip path separators (`/`, `\`), `..`, and any character that is not alphanumeric, `-`, or `_`. Collapse repeated `-` and strip leading/trailing `-`. If the result is empty, use `untitled`.
  58. 5. Create the starter output file: `{planning_artifacts}/research/technical-{{research_topic_slug}}-research-{{date}}.md` with exact copy of the `./research.template.md` contents
  59. 6. Load: `./technical-steps/step-01-init.md` with topic context
  60. **Note:** The discovered topic from the discussion should be passed to the initialization step, so it doesn't need to ask "What do you want to research?" again - it can focus on refining the scope for technical research.
  61. **✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`**