974 B
974 B
Suggested Commands
Project and shell commands for development, utility, and maintenance tasks.
Maintenance Scripts (Windows PowerShell)
- Knowledge-base Terms Replacer: Refactors old "knowledge" references to "knowledge" across files and renames files containing "knowledge":
powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\replace_knowledge.ps1
File Search & Search Commands
- Find specific pattern in knowledge directory:
Select-String -Path .\knowledge\**\*.md -Pattern "concept-pattern" - List files matching a glob recursively (using PowerShell):
Get-ChildItem -Path .\knowledge -Recurse -Filter *.md
Git Commands
- Check current repository status:
git status - Inspect changes in working tree:
git diff HEAD - Check the 3 most recent commits to match style:
git log -n 3