-
Notifications
You must be signed in to change notification settings - Fork 0
Documentation Cleanup & Optimization Project #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
2502a25
docs: Add complete AI reference for WFL language
logbie 5cf8717
Fixes off-by-one error in loop iteration limit
logbie 26f8c72
Implements timeout for 'wait for request' statements
logbie 43408df
docs: Add crypto module documentation
logbie dc40331
docs: Clarify WFL-io.md implementation status
logbie de3e032
docs: Add 4 missing text module functions
logbie 38385a0
docs: Add API validation tracking document
logbie c08e54b
docs: Complete Week 1 validation - add list & filesystem
logbie f1b5f10
docs: Consolidate pattern matching documentation (4→1)
logbie 00f3c7f
docs: Consolidate LSP documentation (3→1)
logbie 6d58107
docs: Retire WFL-AI-Reference.md (143KB duplicate)
logbie cd1f6d8
docs: Archive all dev-notes (Week 3 Days 1-3)
logbie 50ba7c7
docs: Trim stdlib index to navigation TOC (Week 3 Day 4)
logbie 97e3c7a
docs: Add cross-reference headers for async docs (Week 3 Day 5)
logbie 79fb5ac
docs: Fix links in documentation index (Week 4 Day 1-2)
logbie d8e1be9
docs: Improve wfl-living-ai.md as primary AI reference (Week 4 Day 3)
logbie 470714d
docs: Add Back to Top navigation links (Week 4 Day 5)
logbie da0dfbf
docs: Document remaining TODOs (Week 5 Day 2)
logbie b629182
docs: Update master index with cleanup statistics (Week 5 Day 5)
logbie a82ccc2
docs: Add comprehensive cleanup project summary (Week 6 Day 1-2)
logbie c1aebc6
Refactor interpreter code and update local settings
logbie 6f59e5c
Remove temporary flush test files
logbie 6ba6004
docs: Remove outdated AI rules and VS Code extension files
logbie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: WebFirstLanguage/wfl
Length of output: 46
🏁 Script executed:
Repository: WebFirstLanguage/wfl
Length of output: 330
🏁 Script executed:
Repository: WebFirstLanguage/wfl
Length of output: 86
🏁 Script executed:
Repository: WebFirstLanguage/wfl
Length of output: 690
Remove hardcoded machine-specific path from version-controlled settings.
Line 14 contains an absolute Windows path (
G:\Logbie\wfl\Docs) that is specific to a developer's local machine. This file is checked into the repository and will fail on other developers' machines or CI/CD systems.If this path is needed for local development, consider:
.claude/settings.local.jsonto.gitignoreand maintaining it only locally, orDocs), orAdditionally, the new wildcard permissions (
dir:*,find:*,cat:*) on lines 15–17 grant broad file-reading capabilities. Confirm whether these are intentional for the documentation cleanup objectives or if more scoped permissions would be appropriate.🤖 Prompt for AI Agents