chore: migrate repository to standard knowledge base layout

This commit is contained in:
tukuaiai
2026-05-02 03:29:06 +08:00
parent 40a721c24d
commit 628a3bc832
565 changed files with 687 additions and 711 deletions
+9 -9
View File
@@ -13,11 +13,11 @@ documentation:
- '.github/**/*.md'
- 'assets/README.md'
- 'assets/AGENTS.md'
- 'assets/config/**/*.md'
- 'assets/documents/**/*.md'
- 'assets/prompt/**/*.md'
- 'assets/skills/**/*.md'
- 'assets/repos/**/*.md'
- 'tools/config/**/*.md'
- 'docs/**/*.md'
- 'prompts/**/*.md'
- 'skills/**/*.md'
- 'tools/external/**/*.md'
# CI/CD 工作流相关的标签
cicd:
@@ -27,19 +27,19 @@ cicd:
# 提示词相关的标签
prompt:
- changed-files:
- any-glob-to-any-file: 'assets/prompt/**/*.md'
- any-glob-to-any-file: 'prompts/**/*.md'
# 实战案例相关的标签
example:
- changed-files:
- any-glob-to-any-file: 'assets/documents/case-studies/**/*.md'
- any-glob-to-any-file: 'docs/case-studies/**/*.md'
# 外部工具/依赖相关的标签
repos:
- changed-files:
- any-glob-to-any-file: 'assets/repos/**'
- any-glob-to-any-file: 'tools/external/**'
# 工作流模板相关的标签
workflow:
- changed-files:
- any-glob-to-any-file: 'assets/documents/workflow/**'
- any-glob-to-any-file: 'docs/playbooks/workflows/**'
+2 -2
View File
@@ -22,7 +22,7 @@ jobs:
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint --config .github/lint_config.json '**/*.md'
run: markdownlint --config .github/lint_config.json --ignore .history --ignore tools/external --ignore scripts/backups/gz '**/*.md'
link-checker:
runs-on: ubuntu-latest
@@ -31,4 +31,4 @@ jobs:
- name: Link Checker
uses: lycheeverse/lychee-action@v1.5.0
with:
args: --verbose --no-progress './**/*.md'
args: --verbose --no-progress --exclude-path .history --exclude-path .github/wiki --exclude-path tools/external --exclude-path tools/chat-vault --exclude-path scripts/backups/gz './**/*.md'