Install
$ agentstack add skill-kriscard-skills-project ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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:
obsidian search query=""
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:
- "What does 'done' look like for this project?" (free text)
- "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):
- Status: Active / On Hold
- Goal: One-sentence outcome
- Key Links: Related notes, docs, repos (optional)
- Next Action: The very next physical step
- Notes: Any context to capture now (optional)
Step 4 — Decide structure
- Default: single file
1 - Projects/.md - Promote to subfolder
1 - Projects//only if user mentions sub-notes (architecture
docs, PRDs, strategy notes)
Step 5 — Create note
obsidian create path="1 - Projects/.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)
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:
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":
- Ask if they want to fill a retrospective section first (strongly recommended — it's the most
valuable artifact and gets lost if skipped)
- Move to
4 - Archives/Projects - YYYY/.md - Set frontmatter
status: ✅ Done - 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 |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: kriscard
- Source: kriscard/Skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.