请教下大佬们,grill-me + Trellis的组合方案,怎么使用的

helloYan 2026-06-23 09:18 1

请教下大佬们,grill-me + Trellis的组合方案,怎么使用的,Trellis有具体的使用教程吗,请大佬们指点下,谢谢了

最新回复 (13)
  • mqiqi 06-23 09:21
    1

    你把trellis官网链接给ai,喊ai帮你安装,grill-me同理;


    使用:正常输入你的需求,最后补一句:使用grill-me;

    ai就会开始问你问题;推荐使用计划模式,落成一个plan;

  • Terra 06-23 09:22
    2

    块引用https://www.bilibili.com/video/BV1RgGi6sENH/



    这个是trellis群里面的大佬推荐的b站的 trellis使用教程视频

  • ronglexie 06-23 09:22
    3

    这个大佬的工作流可以参考下



    之前一直在调整自己的Coding工作流,现在基本稳定成了一套组合:
    Cursor(Cursor++) + ACE + smart-search-cli + grill-me + Trellis + 其余MCP

    之前使用的路径是:
    孙佬的多模型协作 Workflow

    风佬的 ccg

    Vibe-Skills

    现在这套组合

    1. 为什么我还在用Cursor
    原因很简单:C…
  • xiaoyutx 06-23 09:23
    4

    忘记在哪看到的一个了,希望有帮助。提示词根据自己的需求灵活调整。


  • SEO 06-23 09:23
    5

    Trellis0.6版本已经集成grill-me了

  • cheryH 06-23 09:24
    6

    我个人的使用经验是:Trellis不用刻意去触发,先使用grill-me不断的明确它尚不清晰的点,等都聊通后,就会自动触发Trellis,先写prd进行任务编排,然后开始执行就这样

    当然在项目目录下,需要先trellis init初始化一下,然后就是自动触发trellis任务


    交互式:检测已安装的平台并询问要配置哪些


    trellis init -u your-name


    显式:配置一个或多个平台


    trellis init -u your-name --claude

    trellis init -u your-name --claude --cursor --opencode

    trellis init -u your-name --codex --gemini

    trellis init -u your-name --pi


  • 七叔叔一吃就胖 06-23 09:24
    7

    学习一下,自己用起来也是云里雾里的

  • Sogu 06-23 09:25
    8

    一直在用superpowers,以及用基于superpowers而改的agents.md/claude.md,也想问一下grill-me + superpowers对比grill-me + Trellis如何

  • free-swimming 06-23 09:26
    9

    https://docs.trytrellis.app/zh 这是trellis的官方文档,里面有很多东西可以学习,我自己也是边用边学,用了很长时间然后也学习了很多. 需要注意不要随便清理上下文,个人血的教训

  • Yolo 06-23 09:37
    10

    可以将 grill-me 加入到 Trellis 的 workflow 中使用



    这个方法是站内佬友的方法,将下面的 diff 给 ai 让他修改


    11a12
    > 6. **Grill before execution** — stress-test ambiguous or risky plans before implementation
    102c103
    < Phase 1: Plan → figure out what to do (brainstorm + research → prd.md)
    ---
    > Phase 1: Plan → figure out what to do (brainstorm + grill + research → prd.md)
    141a143
    > | Wants to stress-test a plan/design, says "grill me", asks for ruthless review, or a draft PRD still has unresolved design decisions | `grill-me` |
    155a158
    > | Wants to stress-test a plan/design, says "grill me", asks for ruthless review, or a draft PRD still has unresolved design decisions | `grill-me` |
    226c229,245
    < Return to this step whenever requirements change and revise `prd.md`.
    ---
    > After the first coherent draft of `prd.md` exists, decide whether a `grill-me` pass is required before leaving Phase 1.1.
    >
    > Load `grill-me` when any of these are true:
    > - The user explicitly says "grill me", asks to be stress-tested, or wants ruthless review
    > - The plan has architecture, API, data model, product-scope, migration, security, performance, or cross-platform decisions
    > - The PRD contains alternatives, TODOs, assumptions, hidden dependencies, or vague acceptance criteria
    > - Implementation would be expensive to unwind if the plan is wrong
    >
    > When `grill-me` is active:
    > - Ask exactly one question at a time
    > - For each question, include the recommended answer
    > - Walk the decision tree branch-by-branch and resolve dependencies before moving on
    > - If a question can be answered by reading the codebase, specs, docs, or research artifacts, explore those instead of asking the user
    > - After each user answer, immediately update `prd.md` and, for technical design details, `info.md`
    > - Stop only when the remaining plan is specific enough for Phase 1.3 context curation and Phase 2 implementation
    >
    > Return to this step whenever requirements change and revise `prd.md`. If the change reopens design decisions, run another focused `grill-me` pass.
    313a333
    > | `grill-me` pass completed when the task is complex, risky, or explicitly requested | ✅ when applicable |
    519c539
    < Flow: load `trellis-brainstorm` skill → it creates the task via `python3 ./.trellis/scripts/task.py create` and drives requirements Q&A. For research-heavy work (tool comparison, docs, cross-platform survey), spawn `trellis-research` sub-agents via Task tool — NEVER do 3+ inline WebFetch/WebSearch/`gh api` calls in the main conversation.
    ---
    > Flow: load `trellis-brainstorm` skill → it creates the task via `python3 ./.trellis/scripts/task.py create` and drives requirements Q&A. Once a draft plan exists, load `grill-me` before implementation if the user asks to be grilled or the plan still has unresolved design decisions. For research-heavy work (tool comparison, docs, cross-platform survey), spawn `trellis-research` sub-agents via Task tool — NEVER do 3+ inline WebFetch/WebSearch/`gh api` calls in the main conversation.
    524c544
    < Complete prd.md via trellis-brainstorm skill; then run task.py start.
    ---
    > Complete `prd.md` via `trellis-brainstorm`. If the user asked to be grilled or the plan is complex/risky, run `grill-me` one question at a time until key decisions are resolved, updating `prd.md` / `info.md` after each answer. Then run `task.py start` if the task is not already active.
  • StinkyNoodle 06-23 09:43
    11

    trellis官网有真实业务场景的上手教程,感觉还是挺容易上手的

  • 土豆教主 06-23 10:07
    12

    grill-me不是已经吸收到了trellis里面了吗,为什么要单独安装?

  • 979331856 06-23 11:23
    13

    问下大佬怎么触发,官网哪里写了,搜了没找到

* 帖子来源Linux.do
返回