Conversation
- Fixed all MD013 line-length errors in markdown files - Fixed MD036 emphasis-as-heading errors in command files - Fixed MD060 table formatting errors - Fixed YAML syntax in GitHub workflow files - Added pre-commit hooks for markdown, YAML, shellcheck, and JSON validation - Added markdownlint-cli2 configuration - Updated CONTRIBUTING.md with linting instructions - Pre-commit hooks synchronized with GitHub Actions workflows Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Fix self-referential placeholder check in validate.yml - Add .gitkeep files to empty directories for module structure validation Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
The grep command was finding itself in the workflow file. Exclude .github from the search to prevent this self-reference. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Add -r flag to read command to prevent backslash mangling (SC2162) - Add quotes around variable to prevent globbing (SC2086) - Replace deprecated fail_on_error with fail_level parameter Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Add ansible-awesome-ai.md with all MD013 line-length errors fixed - Remove ansible-awesome-ai.md from linting ignore lists - Enable markdown validation for the file in pre-commit and CLI config Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Add spaces around table separators for proper markdown formatting. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Add .gitkeep files to create required commands/ and agents/ directories. Co-Authored-By: Claude Sonnet 4.5 <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.
Summary
This PR adds comprehensive markdown linting with autofix capabilities and pre-commit hooks to ensure code quality. All markdown files have been cleaned up and formatted according to the project's linting rules.
Changes
Markdown Fixes
Pre-commit Infrastructure
.pre-commit-config.yamlwith hooks for:.markdownlint-cli2.yamlconfiguration.gitignorefor node_modules and package-lock.jsonDocumentation
CONTRIBUTING.mdwith linting and pre-commit instructionsGitHub Actions Sync
Files Changed
Testing
Pre-commit hooks verified to pass:
Usage
After merging, contributors should:
Hooks will automatically run on every commit to ensure code quality.
🤖 Generated with Claude Code