mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-13 06:04:30 +08:00
- 新增 gframework-doc-refresh 统一技能入口,并补齐模块扫描、证据顺序、模板与校验脚本 - 更新共享文档规范与模块映射,收口源码模块到 README、docs 和 ai-libs 的固定关联 - 删除旧 vitepress-* 公开技能定义,避免继续以文档类型拆分入口 - 同步 documentation-governance-and-refresh 的恢复点、风险和下一步
36 lines
848 B
Markdown
36 lines
848 B
Markdown
# Evidence And `ai-libs`
|
|
|
|
The evidence order is fixed:
|
|
|
|
1. source code, XML docs, `*.csproj`
|
|
2. tests and snapshots
|
|
3. module README
|
|
4. current `docs/zh-CN`
|
|
5. `ai-libs/`
|
|
6. archived docs
|
|
|
|
## When To Use `ai-libs`
|
|
|
|
Use `ai-libs/` to answer questions like:
|
|
|
|
- How is this extension point wired in a real project?
|
|
- What does the minimal project layout look like?
|
|
- Which project-side files need to exist for this module to work end to end?
|
|
|
|
## When Not To Use `ai-libs`
|
|
|
|
Do not use `ai-libs/` as the primary source for:
|
|
|
|
- public API semantics
|
|
- exact generator output guarantees
|
|
- supported package matrix
|
|
- diagnostics behavior
|
|
|
|
## Conflict Rule
|
|
|
|
If `ai-libs/` drifts from the current repo:
|
|
|
|
- trust source and tests
|
|
- mention the drift as a compatibility or migration note
|
|
- do not document old consumer behavior as if it were still the contract
|