mirror of
https://github.com/AgriciDaniel/claude-blog.git
synced 2026-09-19 03:32:21 +08:00
1921d5b2a5
- Vendored the Claude Blog Brain at brain/ (self-contained, market-ready SSS+ 94, not part of the plugin payload; all skill tooling is skills/-scoped). - Version surfaces bumped 1.11.0 -> 1.12.0 (plugin.json, pyproject, CITATION, 11 sub-skill SKILL.md version fields, installers); .gitattributes marks brain/ vendored; CHANGELOG [1.12.0] added. - Docs note the bundled brain; component counts refreshed (252 tests). - CI: path-filtered brain job (pytest brain/tests + lint_vault + audit_brain). 252 skill tests + lint + plugin validate green; brain audit market-ready. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
28 lines
772 B
Plaintext
28 lines
772 B
Plaintext
# Normalize line endings to LF on all platforms
|
|
* text=auto eol=lf
|
|
|
|
# Windows-specific files keep CRLF
|
|
*.ps1 text eol=crlf
|
|
*.bat text eol=crlf
|
|
|
|
# Binary assets -- no diff, no line ending conversion
|
|
*.jpeg binary
|
|
*.jpg binary
|
|
*.png binary
|
|
*.gif binary
|
|
*.webp binary
|
|
*.pdf binary
|
|
|
|
# Markdown files are documentation, not source code
|
|
# This keeps Python as the primary language in GitHub's language bar
|
|
*.md linguist-documentation=true
|
|
|
|
# Agent prompts and templates are documentation
|
|
agents/** linguist-documentation=true
|
|
skills/**/references/** linguist-documentation=true
|
|
skills/**/templates/** linguist-documentation=true
|
|
docs/** linguist-documentation=true
|
|
|
|
# The bundled brain is vendored and excluded from language statistics
|
|
brain/** linguist-vendored
|