[PR #49] [MERGED] Feat/gemini #59

Closed
opened 2026-03-03 15:47:32 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mindfold-ai/Trellis/pull/49
Author: @taosu0216
Created: 2/26/2026
Status: Merged
Merged: 2/26/2026
Merged by: @taosu0216

Base: mainHead: feat/gemini


📝 Commits (8)

  • 4b59007 feat(gemini): add Gemini CLI to platform type definitions and registry
  • f6e9eb1 feat(gemini): add TOML command templates and path resolution
  • 653e86d feat(gemini): add configurator, CLI flag, and platform registration
  • 5f00905 feat(gemini): add Gemini CLI support to Python cli_adapter
  • 94295c0 test(gemini): add comprehensive tests for Gemini CLI platform
  • 7b9699a docs: add Gemini CLI to supported platforms and update spec
  • c5d3203 docs(spec): add mandatory test checklist and cli_adapter method guide
  • d3330a1 chore: record session and archive gemini task

📊 Changes

40 files changed (+2518 additions, -35 deletions)

View changed files

📝 .claude/agents/research.md (+9 -1)
📝 .trellis/spec/backend/platform-integration.md (+77 -14)
📝 .trellis/spec/guides/code-reuse-thinking-guide.md (+31 -0)
.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/check.jsonl (+6 -0)
.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/debug.jsonl (+2 -0)
.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/implement.jsonl (+15 -0)
.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/prd.md (+94 -0)
.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/task.json (+41 -0)
📝 .trellis/workspace/taosu/index.md (+4 -2)
📝 .trellis/workspace/taosu/journal-2.md (+140 -0)
📝 README.md (+5 -2)
📝 README_CN.md (+4 -1)
📝 scripts/copy-templates.js (+2 -0)
📝 src/cli/index.ts (+1 -0)
📝 src/commands/init.ts (+1 -0)
src/configurators/gemini.ts (+59 -0)
📝 src/configurators/index.ts (+12 -0)
📝 src/templates/extract.ts (+35 -0)
src/templates/gemini/commands/trellis/before-backend-dev.toml (+17 -0)
src/templates/gemini/commands/trellis/before-frontend-dev.toml (+17 -0)

...and 20 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mindfold-ai/Trellis/pull/49 **Author:** [@taosu0216](https://github.com/taosu0216) **Created:** 2/26/2026 **Status:** ✅ Merged **Merged:** 2/26/2026 **Merged by:** [@taosu0216](https://github.com/taosu0216) **Base:** `main` ← **Head:** `feat/gemini` --- ### 📝 Commits (8) - [`4b59007`](https://github.com/mindfold-ai/Trellis/commit/4b59007e79b0efa5c71d3ef12576e0032cda190f) feat(gemini): add Gemini CLI to platform type definitions and registry - [`f6e9eb1`](https://github.com/mindfold-ai/Trellis/commit/f6e9eb1b59c0281487b0e2cbcd748c4e82666046) feat(gemini): add TOML command templates and path resolution - [`653e86d`](https://github.com/mindfold-ai/Trellis/commit/653e86db5ce917320fc6445c63802c83fa3dc6c4) feat(gemini): add configurator, CLI flag, and platform registration - [`5f00905`](https://github.com/mindfold-ai/Trellis/commit/5f00905e48533e1069413ff52e017d30149ce351) feat(gemini): add Gemini CLI support to Python cli_adapter - [`94295c0`](https://github.com/mindfold-ai/Trellis/commit/94295c08d42bd330ac0e8eee2ef129c9df4568fe) test(gemini): add comprehensive tests for Gemini CLI platform - [`7b9699a`](https://github.com/mindfold-ai/Trellis/commit/7b9699adb40f018ddb91be79b870da0cc9e3667b) docs: add Gemini CLI to supported platforms and update spec - [`c5d3203`](https://github.com/mindfold-ai/Trellis/commit/c5d3203ee4bff082d3e46d72e8177323d9d9f8bb) docs(spec): add mandatory test checklist and cli_adapter method guide - [`d3330a1`](https://github.com/mindfold-ai/Trellis/commit/d3330a1e97aa5c80dd7fec250623428d62138c69) chore: record session and archive gemini task ### 📊 Changes **40 files changed** (+2518 additions, -35 deletions) <details> <summary>View changed files</summary> 📝 `.claude/agents/research.md` (+9 -1) 📝 `.trellis/spec/backend/platform-integration.md` (+77 -14) 📝 `.trellis/spec/guides/code-reuse-thinking-guide.md` (+31 -0) ➕ `.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/check.jsonl` (+6 -0) ➕ `.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/debug.jsonl` (+2 -0) ➕ `.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/implement.jsonl` (+15 -0) ➕ `.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/prd.md` (+94 -0) ➕ `.trellis/tasks/archive/2026-02/02-26-gemini-cli-support/task.json` (+41 -0) 📝 `.trellis/workspace/taosu/index.md` (+4 -2) 📝 `.trellis/workspace/taosu/journal-2.md` (+140 -0) 📝 `README.md` (+5 -2) 📝 `README_CN.md` (+4 -1) 📝 `scripts/copy-templates.js` (+2 -0) 📝 `src/cli/index.ts` (+1 -0) 📝 `src/commands/init.ts` (+1 -0) ➕ `src/configurators/gemini.ts` (+59 -0) 📝 `src/configurators/index.ts` (+12 -0) 📝 `src/templates/extract.ts` (+35 -0) ➕ `src/templates/gemini/commands/trellis/before-backend-dev.toml` (+17 -0) ➕ `src/templates/gemini/commands/trellis/before-frontend-dev.toml` (+17 -0) _...and 20 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem closed this issue 2026-03-03 15:47:33 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Trellis#59
No description provided.