project
Creates new project notes or updates existing ones in the Obsidian vault's 1 - Projects/ folder. Make sure to use this skill whenever the user says "create a project note", "set up a project in obsidian", "new project", "track this project", "update my project status", "project is done", or any request to add, update, or complete a PARA project note.
What this skill does
# Project Note Manager Create or update project notes in `1 - Projects/`. A Project in PARA requires both an outcome (a checkable "done" state) and a deadline — without both, it belongs in `2 - Areas/`. ## Mode Detection Classify the request before doing anything: | Signal | Mode | | ---------------------------------- | ------------------------------------- | | "Create / new / set up / track" | CREATE | | "Update / refresh / status / done" | UPDATE | | Ambiguous | Ask: "Create new or update existing?" | ## CREATE Workflow ### Step 1 — Search before write Check if a project note already exists: ```bash obsidian search query="<project name>" obsidian files folder="1 - Projects/" format=json ``` If a close match exists, surface it and confirm before proceeding. ### Step 2 — Validate it's a Project (not an Area) A project needs **both** a discrete outcome and a deadline. Ask via `AskUserQuestion`: 1. "What does 'done' look like for this project?" (free text) 2. "When does it need to be done?" (specific date / end of quarter / end of year / no deadline) If "no deadline" or no discrete outcome: propose `2 - Areas/` instead. Don't create a project note for things that never end. ### Step 3 — Gather project details Single `AskUserQuestion` call (batch to minimize round-trips): 1. **Status**: Active / On Hold 2. **Goal**: One-sentence outcome 3. **Key Links**: Related notes, docs, repos (optional) 4. **Next Action**: The very next physical step 5. **Notes**: Any context to capture now (optional) ### Step 4 — Decide structure - Default: single file `1 - Projects/<Project Name>.md` - Promote to subfolder `1 - Projects/<Project Name>/` only if user mentions sub-notes (architecture docs, PRDs, strategy notes) ### Step 5 — Create note ```bash obsidian create path="1 - Projects/<Name>.md" template="Project" ``` Set frontmatter with `obsidian property:set` and fill the sections with gathered details. The CLI has no `patch` for section edits — if a section must be targeted, ask the user (MCP `obsidian_patch_content` or recreate via `read` + `create ... overwrite`). Always show a preview and wait for confirmation before writing. ### Step 6 — Add to Active Projects MOC (if it exists) ```bash obsidian search query="Active Projects" ``` If found, append a wikilink to the new project. ## UPDATE Workflow ### Step 1 — Identify the project If named, resolve to file path. Otherwise list and ask: ```bash obsidian files folder="1 - Projects/" format=json ``` ### Step 2 — Read and detect staleness Read the project file. Look for: - `Updated:` more than 14 days ago → flag for refresh - Empty "What's in progress" section → ask what's happening - Past due date → ask: extend, archive, or redefine? ### Step 3 — Update changed sections only Prefer not to rewrite the full file. The CLI has no `patch`, so a section-targeted update means either the MCP `obsidian_patch_content` tool (heading-targeted) or a `read` + `create ... overwrite` rewrite. Ask the user which to use, then update the `Current Status` section and bump the `Updated: YYYY-MM-DD` marker to today. ### Step 4 — Show diff, get approval, write ## Project Completion If the user says "this project is done": 1. Ask if they want to fill a retrospective section first (strongly recommended — it's the most valuable artifact and gets lost if skipped) 2. Move to `4 - Archives/Projects - YYYY/<Name>.md` 3. Set frontmatter `status: ✅ Done` 4. Update any MOC that referenced this project ## References | Priority | Load when | Reference | | ----------- | -------------------------------------------------------------------------------------------- | ----------------------------------- | | 1 — First | Building the intake interview — need exact question wording or option lists | `references/interview-questions.md` | | 2 — Context | User questions PARA principles, Hot/Cold classification, or why outcome+deadline is required | `references/tiago-principles.md` |
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.