feat(skills): wiki bucket sources/ → summaries/ — mappa-knowledge, project-bootstrap, using-markitdown, using-projects-meta (+README) (решение 2026-08-24)

This commit is contained in:
2026-08-25 13:52:56 +03:00
parent 0ed7060116
commit 805077902d
5 changed files with 24 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
---
name: project-bootstrap
author: ours
version: 2.1.0
version: 2.2.0
description: >
Initializes or upgrades a project in the current folder: git, .gitignore, README.md,
.wiki/ using Karpathy's method, .tasks/ for task tracking, AGENTS.md (canon) with
@@ -198,7 +198,7 @@ v2 (mappa wiki-тулы). Файловый `.wiki/` — только для пр
entities/ ← entity pages (people, services, modules) — empty .gitkeep
concepts/ ← concept / design decision pages — empty .gitkeep
packages/ ← package pages — empty .gitkeep
sources/ ← one summary per ingested source — empty .gitkeep
summaries/ ← one summary per ingested source (LLM, raw_path) — empty .gitkeep
```
Page-level workflow (ingest, query, lint) and file formats are owned by the
@@ -223,7 +223,7 @@ file overrides the skill where they conflict.
- `entities/` — discrete things the project tracks (people, services, modules).
- `concepts/` — recurring ideas, design decisions, gotchas.
- `packages/` — code packages this project produces or consumes.
- `sources/` — one summary page per ingested external doc; frontmatter carries `ingested:` and `raw_path:`.
- `summaries/` — one summary page per ingested external doc; frontmatter carries `ingested:` and `raw_path:`.
- `overview.md` — single project-wide overview.
## Naming
@@ -298,7 +298,7 @@ Parseable: `grep "^## \[" .wiki/log.md | tail -20`.
**Immutable.** Read, never edit. The only allowed modification is appending a `> Status:` blockquote when the user explicitly asks for a status audit.
Place raw inputs here — articles, transcripts, PDFs, screenshots — exactly as they came in. The agent reads from `raw/`, writes summaries into `../sources/`, and never modifies raw files.
Place raw inputs here — articles, transcripts, PDFs, screenshots — exactly as they came in. The agent reads from `raw/`, writes summaries into `../summaries/`, and never modifies raw files.
For large or path-sensitive sources that live outside the repo, register them here:
@@ -307,7 +307,7 @@ For large or path-sensitive sources that live outside the repo, register them he
\`\`\`
```
The empty subdirectories (`entities/`, `concepts/`, `packages/`, `sources/`)
The empty subdirectories (`entities/`, `concepts/`, `packages/`, `summaries/`)
each get a `.gitkeep` so git tracks them.
---