Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/godmakereth/vibe-coding-tw/gemini-mdgit clone --depth 1 https://github.com/godmakereth/vibe-coding-twWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01646 | $0.01646 |
| Opus 5 | $0.00823 | $0.00823 |
| Sonnet 5 | $0.00329 | $0.00329 |
| Haiku 4.5 | $0.00165 | $0.00165 |
Grade A, and why
vibe-coding-tw GEMINI.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
GEMINI.md - 專案上下文文件 (Project Context Document)
專案概述 (Project Overview)
vibe-coding-cn 專案旨在提供一個透過與 AI 結對程式設計實現“將想法變為現實”的終極工作流程。它強調“規劃驅動”和“模組化”的核心理念,旨在避免 AI 失控導致的專案混亂。該專案不僅僅是一個程式碼庫,更是一個全面的 AI 結對程式設計指南、龐大的提示詞庫和模組化的技能工具集,涵蓋了從專案構思、技術選型、實施規劃到具體開發、除錯和擴充套件的全過程。
核心理念: 規劃是核心,透過結構化、模組化的方式引導 AI,確保專案可控、可維護。
技術棧 (Technology Stack)
本專案主要的技術棧和相關工具包括:
- 核心語言: Python (用於
prompts-library工具和備份指令碼) - CLI 互動:
rich,InquirerPy(用於prompts-library提供友好的命令列介面) - 資料處理:
pandas,openpyxl(用於prompts-library處理 Excel 檔案) - 配置管理:
PyYAML(用於prompts-library的配置) - 文件規範:
markdownlint-cli(用於Makefile中的lint任務) - 版本控制: Git
- 自動化: Makefile
- 作業系統: 相容 Linux
主要功能與工作流程 (Key Features & Workflow)
-
AI 提示詞庫 (
prompts/):- 一個極其龐大和精細分類的提示詞集合,是專案的核心資產。
coding_prompts/: 專注於程式設計和程式碼生成的提示詞。system_prompts/: 用於設定 AI 行為和思維框架的系統級提示詞。user_prompts/: 使用者自定義或常用的提示詞。
-
提示詞庫管理工具 (
libs/external/prompts-library/):- 提供 Python 工具 (
main.py),用於在 Excel 工作簿 (prompt_excel/) 和 Markdown 文件 (prompt_docs/) 之間進行提示詞的相互轉換。 - 支援互動式和非互動式操作。
- 提供 Python 工具 (
-
技能庫 (
skills/):- 一個模組化的技能集合,為 AI 提供了特定工具和領域的知識。
- 每個技能(如
ccxt,postgresql,telegram-dev)都包含獨立的SKILL.md描述, 參考資料和指令碼。
-
專案備份工具 (
backups/):快速備份.py指令碼能根據.gitignore規則智慧地打包專案檔案為.tar.gz格式。
-
知識庫與文件 (
documents/):- 包含程式碼組織、開發經驗、系統提示詞構建原則、專案架構模板等各類文件。
-
外部工具與個人配置 (
libs/external/):- 存放非核心專案程式碼但有用的外部工具、個人配置或實驗性程式碼。例如:
my-nvim/(nvim 配置),XHS-image-to-PDF-conversion/(圖片轉PDF工具)。
- 存放非核心專案程式碼但有用的外部工具、個人配置或實驗性程式碼。例如:
檔案結構 (File Structure)
.
├── .gitignore # Git 版本控制忽略檔案配置
├── AGENTS.md # 面向 AI Agent 的貢獻與行為準則。
├── CLAUDE.md # 面向 Claude 模型的上下文與指令。
├── CODE_OF_CONDUCT.md # 專案行為準則。
├── CONTRIBUTING.md # 貢獻指南。
├── GEMINI.md # 面向 Gemini 模型的上下文與指令 (本文件)。
├── LICENSE # 專案許可證。
├── Makefile # 專案自動化指令碼 (lint, backup 等)。
├── README.md # 專案主文件,包含專案概覽、使用指南等。
│
├── backups/ # 專案備份指令碼。
│ ├── 一鍵備份.sh # 一鍵備份指令碼。
│ └── 快速備份.py # 快速備份 Python 指令碼。
│
├── documents/ # 存放各類說明文件、經驗總結和配置。
│ └── ... # 更多文件內容。
│
├── libs/ # 核心庫程式碼。
│ ├── common/ # 通用功能和工具庫。
│ │ ├── __init__.py # Python 包初始化檔案。
│ │ ├── models/ # 資料模型定義。
│ │ └── utils/ # 實用工具函式。
│ ├── database/ # 資料庫相關程式碼。
│ └── external/ # 外部工具、個人配置或實驗性程式碼。
│ ├── prompts-library/ # 提示詞庫管理工具 (Excel-Markdown 互轉)。
│ │ ├── main.py # 提示詞庫管理工具主程式。
│ │ ├── requirements.txt # 工具依賴。
│ │ ├── prompt_excel/ # Excel 格式提示詞。
│ │ ├── prompt_docs/ # Markdown 格式提示詞文件。
│ │ └── ... (其他 prompts-library 內部檔案)
│ ├── my-nvim/ # 個人 Neovim 配置。
│ └── XHS-image-to-PDF-conversion/ # 小紅書圖片轉 PDF 工具。
│
├── prompts/ # 核心資產:AI 提示詞庫。
│ ├── coding_prompts/ # 程式設計與程式碼生成相關提示詞。
│ ├── system_prompts/ # AI 系統級提示詞。
│ └── user_prompts/ # 使用者自定義提示詞。
│
└── skills/ # 模組化技能庫。
├── ccxt/ # CCXT 加密貨幣交易庫技能。
├── claude-code-guide/ # Claude Code 使用指南技能。
├── postgresql/ # PostgreSQL 資料庫技能。
├── telegram-dev/ # Telegram Bot 開發技能。
└── ... (其他 10+ 個技能)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 95 lines · 1,646 tokens per session scan A d4ed0298efcf
vibe-coding-tw GEMINI.md is an instructions file published in the GitHub repository godmakereth/vibe-coding-tw (47 stars, last pushed 8mo ago), licensed MIT. It adds 1,646 tokens to every session, about $0.0082 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
prompty copilot-instructions.md
Instructions for microsoft/prompty, covering prompty v2 — complete rebuild plan, what prompty uses from the typra-generated model, key design decisions, python coding rules and environment & tooling.
AgentX ai.instructions.md
AI and ML specific coding instructions for building AI agents, LLM integrations, and intelligent workflows.
ai-prompts AGENTS.md
Instructions for liatrio-labs/ai-prompts, covering ai agent instructions, context marker, local skill scripts, standard workflow and initialize.
vscode-copilot-chat model-prompts.instructions.md
Model-specific prompt authoring and registry guidelines.
comfy-prompt-studio AGENTS.md
Instructions for yxhpy/comfy-prompt-studio, covering agents.md - ai 代理配置文档, ai 提供商, 1. ollama (默认), 2. gemini and 提示词生成服务.
ZipAI CLAUDE.md
Claude Code instructions for nickdesi/ZipAI, covering claude.md — zipai: ultra-dense token optimizer, rules, 1. zero filler, 2. ambiguity and 3. prompt caching.