docs: Fix broken references and remove non-existent flags#32
Merged
Conversation
Fixed broken documentation references: - README.md: docs/05-development → docs/06-development (2 occurrences) Removed references to non-existent flags: - --no-keychain flag (never implemented) - Replaced with actual OS credential manager commands - Updated quick-start.md to use interactive prompts instead - --no-audit flag (never implemented) - Corrected to --enable-audit (actual flag name) - Updated quick-start.md to reflect audit is disabled by default Files changed: - README.md - docs/01-getting-started/quick-start.md - docs/03-reference/command-reference.md Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Clean up documentation by fixing broken links and removing references to flags that were never implemented.
Fixed Broken References
docs/05-development→docs/06-development(2 occurrences)Removed Non-Existent Flags
--no-keychain(never implemented)Before:
pass-cli init --no-keychain # Disables keychainAfter:
pass-cli initcmdkey /delete:pass-clisecurity delete-generic-password -s "pass-cli" -a "$USER"secret-tool clear service pass-cli vault /path--no-audit(never implemented)Before:
pass-cli init --no-audit # Disable audit loggingAfter:
pass-cli init --enable-audit # Enable audit logging (disabled by default)Files Changed
README.md- Fixed 2 broken path referencesdocs/01-getting-started/quick-start.md- Removed --no-keychain and --no-audit, corrected to interactive prompts and --enable-auditdocs/03-reference/command-reference.md- Replaced --no-keychain with OS-specific commandsVerification