forked from trimstray/the-book-of-secret-knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request
Description
Implementing Tags for Filtering & Future-Proofing
Since this is a static Markdown repo (no database), use YAML frontmatter + inline tags. Two complementary approaches:
- File-level frontmatter (for whole-page metadata)
At the top of docs/cli-tools.md (or per-section files later):
YAML---
title: CLI Tools
tags: [cli, terminal, sysadmin, security, networking, productivity]
related: [shell-one-liners, gui-tools]
---
- Per-tool inline tags (scalable for search/scripts)
Standardize each tool entry like this:
Markdown
- **[fd](https://github.com/sharkdp/fd)** — Simple, fast alternative to `find`.
Tags: file-search, rust, replacement
- **[nmap](https://github.com/nmap/nmap)** — Network discovery & security auditing.
Tags: network, scanning, reconnaissImplementing Tags for Filtering & Future-Proofing
Common tag vocabulary to enforce (start small, expand):
- language: rust/go/python/bash/etc.
- type: replacement, multiplexer, analyzer, scanner, editor, viewer, benchmark
- domain: networking, security, filesystem, monitoring, crypto, productivity, dns, http, recon
- license: opensource (default), freemium, etc. (only if relevant)
- status: active, archived, maintained
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or request