This commit is contained in:
ray zhou
2026-05-29 11:21:40 +08:00
parent 5d6d482efe
commit f71a5c59af
447 changed files with 32245 additions and 116 deletions

94
.gitignore vendored
View File

@@ -1,63 +1,45 @@
# >>> CURSOR MANAGED BLOCK >>>
# Ignore everything in .cursor by default
# Ignore everything in .cursor
*
# Keep gitignore itself
!.gitignore
# =========================================================
# Team shared Cursor rules
# =========================================================
!rules/
!rules/**
# =========================================================
# Team shared Cursor agents
# =========================================================
!agents/
!agents/**
# =========================================================
# Team shared Cursor skills
# =========================================================
# Un-ignore projects so we can descend to allowlisted subdirs
!projects/
projects/*
!projects/*/
projects/*/*
# MCP tool descriptors, resources, prompts
!projects/*/mcps/
!projects/*/mcps/**
# Agent transcripts for citation
!projects/*/agent-transcripts/
!projects/*/agent-transcripts/**
# Terminal output files
!projects/*/terminals/
!projects/*/terminals/**
# Conversation notes (shared scratchpad)
!projects/*/agent-notes/
!projects/*/agent-notes/**
# Large tool output files
!projects/*/agent-tools/
!projects/*/agent-tools/**
# Plugin cache (rules, skills, agents)
!plugins/
!plugins/**
# Built-in Cursor skills
!skills-cursor/
!skills-cursor/**
# User's personal skills
!skills/
!skills/**
# =========================================================
# Team shared slash commands
# =========================================================
# User's personal slash commands
!commands/
!commands/**
# =========================================================
# Team shared plans, optional
# =========================================================
plans/
plans/**
# =========================================================
# Do NOT track Cursor projects runtime files
# =========================================================
projects/
projects/**
# =========================================================
# Do NOT track Cursor plugin cache
# =========================================================
plugins/
plugins/**
# =========================================================
# Do NOT track built-in Cursor skills
# Usually auto-generated / synced by Cursor
# =========================================================
skills-cursor/
skills-cursor/**
# =========================================================
# Do NOT track runtime state / transcripts / terminal logs
# =========================================================
subagents/
subagents/**
# User's plan files
!plans/
!plans/**
# Subagent state/transcripts
!subagents/
!subagents/**
# User-level cursor rules
!rules/
!rules/**
# <<< CURSOR MANAGED BLOCK <<<