tidy
No description available.
File Explorer
- organize-rpc-method.md
- index.md
- 2026-01-24-user-profile-design.md
- 2026-01-26-chunked-consolidation-design.md
- 2026-01-26-chunked-consolidation-impl.md
- 2026-01-26-manual-organization-impl.md
- 2026-01-26-manual-organization-user-profile-design.md
- 2026-01-27-search-index-sync-design.md
- dev-install.sh
- tidyd
- ConsolidationBatcher.swift
- ConsolidationExecutor.swift
- ConsolidationManager.swift
- ConsolidationPromptBuilder.swift
- FolderSummaryGenerator.swift
- LLMEngine.swift
- LLMTypes.swift
- ModelManager.swift
- PromptBuilder.swift
- RPCHandler.swift
- SocketServer.swift
- SearchIndex.swift
- BFSScanner.swift
- Config.swift
- FileOperationsHelper.swift
- FileQueue.swift
- FileWatcher.swift
- FolderOperations.swift
- FolderSummarizer.swift
- FolderSummaryCache.swift
- GitLogger.swift
- Logger.swift
- ManualOrganizer.swift
- OrganizeProgress.swift
- Organizer.swift
- Scheduler.swift
- Throttle.swift
- TidyDaemon.swift
- UserProfile.swift
- UserProfileGenerator.swift
- WorkState.swift
- SearchIndexTests.swift
- .gitignore
- com.tidy.daemon.plist
- install.sh
- Package.resolved
- Package.swift
- README.md
- uninstall.sh
- tidy-v0.1.0-darwin-arm64.tar.gz
- tidy-v0.2.0-darwin-arm64.tar.gz
- 2025-01-24-installer-design.md
- 2025-01-24-interleaved-cold-start-design.md
- 2026-01-23-mlx-llm-implementation.md
- 2026-01-23-mlx-llm-integration-design.md
- 2026-01-23-onboarding-design.md
- 2026-01-23-tidy-design.md
- 2026-01-23-tidy-implementation.md
- 2026-01-24-cold-start-gap-analysis.md
- 2026-01-24-consolidation-pass-design.md
- 2026-01-24-consolidation-pass-implementation.md
- 2026-01-24-daemon-architecture-analysis.md
- daemon-monitor-agent.md
- mlx-model-research.md
- session-state.md
- 01-dashboard.txt
- 02-chat-interaction.txt
- 03-history.txt
- 04-storage.txt
- 05-settings.txt
- 06-onboarding.txt
- 07-organization-progress.txt
- 08-states-and-errors.txt
- 09-help.txt
- 10-design-critique.txt
- 11-dashboard-v2.txt
- 12-preview-organization.txt
- 13-chat-v2.txt
- 14-design-system.txt
- 15-dashboard-v3-with-color.txt
- 16-chat-v3-with-color.txt
- 17-history-with-color.txt
- README.md
- tidy-mockups.html
- build-release.sh
- install.sh
- repair-index.py
- web-install.sh
- main.go
- socket.go
- app.go
- dashboard.go
- help.go
- history.go
- onboarding.go
- search.go
- settings.go
- styles.go
- go.mod
- go.sum
- .gitignore
- CLAUDE.md
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
go build
View Details ▼
go build
Compile Go sources.
go build {{path/to/main.go}}
Compile a 'package main' file (output will be the filename without extension):
go build -o {{path/to/binary}} {{path/to/source.go}}
Compile, specifying the output filename:
go build -o {{path/to/binary}} {{path/to/package}}
Compile a package:
tidy
View Details ▼
tidy
Clean up and pretty print HTML, XHTML, and XML files.
Note: `tidy` cannot preserve original indentation.
tidy {{path/to/file.html}}
Pretty print an HTML file:
tidy {{[-i|--indent]}} y {{[-w|--wrap]}} 100 {{[-o|-output]}} {{path/to/output.html}} {{path/to/file.html}}
Enable indentation, wrapping lines in 100, saving to `output.html`:
tidy -config {{path/to/configuration}} {{[-m|-modify]}} {{path/to/file.html}}
Modify an HTML file in-place using a configuration file:
