tags-k
This skill should be used when the user asks to "check tags", "update tags", "audit tags", "change tag", "list tags", "tag this note", "fix frontmatter tags", or needs to manage tags across notes.
What this skill does
> **Knowledge skill** — Tag vocabulary and rules: the 5-tag system, design principles, lifecycle, valid combinations. # Tag Management Manage the vault's intent-based tag vocabulary. Tags express the **role a note plays in your thinking** — orthogonal to PARA (which handles location) and `type` (which handles what it is). ## Tag Vocabulary 5 tags. Each describes the note's role in your knowledge system: | Tag | Role | When to Use | |-----|------|-------------| | `#seed` | Raw spark | Early idea, observation, unprocessed thought. Needs development. | | `#thread` | Developing narrative | Part of a bigger picture, connects to ongoing thinking. Being actively developed. | | `#tool` | Applicable method | Framework, technique, mental model, methodology. Something to apply. | | `#question` | Open gap | Unresolved question, gap in understanding, thing to figure out. | | `#insight` | Crystallized understanding | Key takeaway, "aha" moment, settled understanding. | ### Design Principles - **Cross-cutting**: A `#seed` in math-stats and a `#seed` in ai-dev-ecosystem both mean "needs development" - **Intent-based**: Tags express what you want to DO with the knowledge - **Orthogonal to PARA**: Areas handle topics, tags handle knowledge roles - **Not status**: Note maturity lives in the `status` frontmatter field (`draft`, `refining`, or omitted for stable) ### Tag Combinations Tags can combine: `[seed, question]` (a question that's still raw), `[tool, insight]` (a framework you've crystallized). Keep to 1-2 tags. If you need 3+, the note probably needs splitting. ### Tag Lifecycle Notes naturally move through tags as understanding develops: ``` #seed → #thread → #insight (ideas that crystallize) #seed → #question → #insight (questions that get answered) #tool stays #tool (methods are stable once captured) ``` ## Mode 1: Tag a Note **Trigger**: `/tags path/to/note.md` 1. Read the note's content and frontmatter 2. Determine the note's role: - Is it a raw, undeveloped thought? → `#seed` - Is it part of a developing line of thinking? → `#thread` - Is it a framework/method/technique? → `#tool` - Does it pose or explore an unanswered question? → `#question` - Has it crystallized a clear understanding? → `#insight` 3. Show current tags vs. suggested tags 4. On confirmation, edit the frontmatter `tags:` field ## Mode 2: Audit Tags **Trigger**: `/tags --audit` Scan all notes and report: 1. **Invalid tags**: Tags outside the 5-tag vocabulary 2. **Missing tags**: Notes with no `tags` field (exclude MOCs, project briefs) 3. **Stale seeds**: Notes tagged `#seed` older than 30 days — develop or archive 4. **Open questions**: All `#question` notes — any answered? Any resolvable? 5. **Tag distribution**: Count per tag across the vault Exclude `_System/`, `.obsidian/`, `04-archive/` from scan. ## Mode 3: List by Tag **Trigger**: `/tags --list` Group all notes by tag: ``` ## #seed (N notes) - path/to/note.md ## #thread (N notes) ... ## #insight (N notes) ... ## #tool (N notes) ... ## #question (N notes) ... ## Untagged (N notes) ... ```
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.