| name | project |
| description | Project-specific architecture, maintenance tasks, and unique conventions. Load when performing project-wide maintenance or working with the core architecture. |
Project Context
This skill provides the unique context and architectural details for this repository.
Purpose
To provide guidance on project-specific structures and tasks that differ from general Obsidian development patterns.
When to Use
Load this skill when:
- Understanding the repository's unique architecture.
- Performing recurring maintenance tasks.
- Following project-specific coding conventions.
Project Overview
- Primary Stack: [e.g., TypeScript, Svelte, Lucide icons]
- Key Directories: [e.g., src/, styles/, scripts/]
Core Architecture
- [Detail how primary components interact here]
Project-Specific Conventions
- Naming: [e.g., class names use PascalCase, private methods prefixed with _]
- Patterns: [e.g., use of custom stores, specific state management]
Key Files
manifest.json: Plugin/theme manifest
package.json: Build scripts and dependencies
Maintenance Tasks
- [e.g., npm run dev to start development server]
- [e.g., npm run version-bump to release new version]
额外注意
- 你在修复bug时,要先弄清case节点上的每个调用链条或逻辑链条,确认责任归属,解决方案需要链条上的哪些模块配合,之后给出方案。如果方案很简单,直接执行。如果方案涉及逻辑变更,向用户确认后才能执行。