Skip to content

Commit 259a4a8

Browse files
committed
Clean-up rest of mentions of tags and platforms
1 parent b583782 commit 259a4a8

File tree

8 files changed

+63
-103
lines changed

8 files changed

+63
-103
lines changed

README_TIL_TOOL.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ A self-contained command-line tool for managing Today I Learned (TIL) entries. U
3333
- Execute code blocks from TIL entries
3434
- Validate TIL entries for proper formatting
3535
- Create new TIL entries with correct formatting
36-
- Browse entries by tags and platforms
3736

3837
## Usage
3938

@@ -44,8 +43,6 @@ A self-contained command-line tool for managing Today I Learned (TIL) entries. U
4443
### Commands
4544

4645
- `list`: List all TIL entries
47-
- `--tag TAG`: Filter by tag
48-
- `--platform PLATFORM`: Filter by platform
4946

5047
- `search TERM`: Search for TIL entries matching the given term
5148

@@ -59,10 +56,6 @@ A self-contained command-line tool for managing Today I Learned (TIL) entries. U
5956
- `validate [ENTRY]`: Validate TIL entries for proper formatting
6057
- `ENTRY` (optional): File path or name/title (validates all entries if not specified)
6158

62-
- `tags`: List all available tags
63-
64-
- `platforms`: List all available platforms
65-
6659
- `create TITLE [--dir DIRECTORY]`: Create a new TIL entry
6760
- `TITLE`: Title of the new entry
6861
- `--dir DIRECTORY`: Directory to create the entry in (optional)

ai/aider.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Install aider AI pair programming CLI tool
22

3-
Tags:
4-
Platform: darwin
5-
63
## Summary
74

85
Install the AI pair programming tool [aider](https://aider.chat)

ai/claude-code.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Install and use Claude Code
22

3-
Tags:
4-
Platform: darwin
5-
63
## Summary
74

85
Install Claude Code on the local computer, follow the guide here for more detailed instructions:

ai/repomix.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Install and use repomix
22

3-
Tags:
4-
Platform: darwin
5-
63
## Summary
74

85
Repomix is a CLI tool to pack your code repo into a single file suitable in ingest as an LLM context.

python/til-tests.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Run the til tool unit tests
22

3-
Tags:
4-
Platform:
5-
63
## Summary (executable)
74

85
```bash

til-format.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# TIL Entry Format
22

3-
Tags: documentation, format, standard
4-
Platform: all
5-
63
## Summary
74

85
This document describes the standardized format for Today I Learned (TIL) entries to make them both human-readable and machine-parsable for automated tools.
@@ -60,15 +57,14 @@ The accompanying Python tool will:
6057

6158
1. Parse metadata from key-value pairs
6259
2. Extract executable blocks from sections tagged with "(executable)"
63-
3. Build search index using tags and content
60+
3. Build search index on content
6461
4. Provide commands to search, display, and execute configurations
6562

6663
## Validation
6764

6865
A GitHub Action will validate that each TIL entry:
6966

7067
1. Starts with an H1 title
71-
2. Contains required metadata (Tags, Platform)
72-
3. Has a Summary section
73-
4. Uses proper markdown formatting
74-
5. Has code blocks with language specifiers
68+
2. Has a Summary section
69+
3. Uses proper markdown formatting
70+
4. Has code blocks with language specifiers

til_cli/README.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A command-line tool for managing Today I Learned entries.
44

55
## Features
66

7-
- List TIL entries with filtering by tag or platform
7+
- List TIL entries with
88
- Search TIL entries by keyword
99
- Display TIL entries
1010
- Execute code blocks in TIL entries
@@ -66,12 +66,6 @@ til config $(pwd)
6666
# List all TIL entries
6767
til list
6868

69-
# Filter entries by tag
70-
til list --tag git
71-
72-
# Filter entries by platform
73-
til list --platform macos
74-
7569
# Search for entries
7670
til search "git commit"
7771

@@ -87,12 +81,6 @@ til create "Git Stash" --dir git
8781
# Validate all entries
8882
til validate
8983

90-
# List all tags
91-
til tags
92-
93-
# List all platforms
94-
til platforms
95-
9684
# Update the repository
9785
til update
9886

0 commit comments

Comments
 (0)