Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
8d4a6bf
docs: add GitHub PR workflow documentation
CodeSigils May 6, 2026
434cced
fix: align README tables for MD060 compliance
CodeSigils May 11, 2026
0d46813
chore: switch MD060 to left style for practical table compliance
CodeSigils May 11, 2026
e8e51c3
feat: optimize pipeline, rewrite check-fences in node, refactor lint.sh
CodeSigils May 11, 2026
c665dea
docs: fix skill structure tree in README.md
CodeSigils May 11, 2026
af79ba3
docs: fix hook path and manual pipeline instructions
CodeSigils May 11, 2026
0932b84
docs: add skill structure tree to AGENTS.md and SKILL.md
CodeSigils May 11, 2026
46e152b
docs: remove outdated 'empty openers' references from AGENTS.md and l…
CodeSigils May 11, 2026
45cfb5c
docs: add badges and polish introduction for discoverability
CodeSigils May 11, 2026
f1ef30d
docs: remove obsolete jq prerequisite from README.md
CodeSigils May 11, 2026
c133e9d
docs: improve prerequisites section in README and SKILL
CodeSigils May 11, 2026
47d1a92
fix: revert hook paths to reflect Hermes flattened installation direc…
CodeSigils May 11, 2026
da822d2
refactor: convert bash wrappers to pure Node.js scripts for full cros…
CodeSigils May 11, 2026
f0bae3d
feat: add mandatory auto-lint rule to SKILL.md and AGENTS.md
CodeSigils May 11, 2026
0050e04
docs: refresh README with accurate hook, pipeline, and changelog desc…
CodeSigils May 11, 2026
818280b
docs: fix broken pipe escape example in README
CodeSigils May 11, 2026
8aac230
docs: replace What It Does table with concrete before/after examples
CodeSigils May 11, 2026
912817d
docs: fix What It Does examples with separate before/after code blocks
CodeSigils May 11, 2026
40d81b7
fix: skip table processing inside fenced code blocks in fix-tables.js…
CodeSigils May 11, 2026
4e68102
docs: restore correct Before/After table examples now that fence bug …
CodeSigils May 11, 2026
983ed7d
perf: merge fix-tables.js + pad-tables.js into single-pass format-tab…
CodeSigils May 11, 2026
f8ba705
docs: update SKILL.md and AGENTS.md to reflect format-tables.js refactor
CodeSigils May 11, 2026
2dbbe3c
docs: update Skill Structure tree and v2.9 changelog in README
CodeSigils May 11, 2026
0b02310
docs: final sweep — fix all remaining stale fix-tables/pad-tables ref…
CodeSigils May 11, 2026
76cfa8a
fix: rewrite test suite for format-tables.js; fix MD055 and code fenc…
CodeSigils May 11, 2026
1c5e8e4
fix: remove stale 'shell hooks' wording from SKILL.md prerequisites
CodeSigils May 11, 2026
d127dff
fix: update workflow and lint.js to support multiple targets and new …
CodeSigils May 11, 2026
36d7ff8
docs: sync SKILL.md rules and validation commands with repo state
CodeSigils May 11, 2026
418f212
refactor(AGENTS.md): rewrite as concise agent runbook
CodeSigils May 12, 2026
5f7aa96
fix: sync rule tables with actual config, fix example tables
CodeSigils May 12, 2026
ab5382b
feat(AGENTS.md): add agent contract, severity levels, verb sections
CodeSigils May 12, 2026
877d22b
feat: add Agent Behavioral Standards section to README
CodeSigils May 12, 2026
09ce9e4
Fix AGENTS rule descriptions and examples
CodeSigils May 12, 2026
ce54e65
Fix markdownlint rule configuration drift
CodeSigils May 12, 2026
071c743
Sync SKILL.md rule documentation with markdownlint config
CodeSigils May 12, 2026
b002e77
Align MD060 config with formatter behavior
CodeSigils May 12, 2026
af09768
Sync AGENTS with aligned table policy
CodeSigils May 12, 2026
8f3c442
Add repository consistency checker
CodeSigils May 12, 2026
394a7ca
Add CI workflow for governance validation
CodeSigils May 12, 2026
f24c12d
Refresh stale lint pipeline comments
CodeSigils May 12, 2026
ae8087e
Fix escaped pipe table spacing example in README
CodeSigils May 12, 2026
be6887d
Restore full README with corrected escaped-pipe example
CodeSigils May 12, 2026
0c42843
Align escaped-pipe README example spacing
CodeSigils May 12, 2026
390ed67
Fix README LICENSE link to explicit relative path
CodeSigils May 12, 2026
4896926
Restore full README content with explicit LICENSE link
CodeSigils May 12, 2026
2190535
Fix markdown lint skill governance
CodeSigils May 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: markdown-lint-ci

on:
push:
pull_request:

jobs:
validate:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Repository consistency
run: node scripts/check-consistency.js

- name: Table formatter tests
run: node test/format-tables.test.js

- name: Fence validation
run: node lint.js --fences .

- name: Table validation
run: node lint.js --validate .

- name: Markdown lint check
run: node lint.js --check .
Loading
Loading