chore: bootstrap poller-sandbox (test project for autonomous poller)

This commit is contained in:
2026-08-23 16:44:44 +03:00
commit 9435667ec4
14 changed files with 128 additions and 0 deletions

22
.wiki/CLAUDE.md Normal file
View File

@@ -0,0 +1,22 @@
# Wiki Schema — poller-sandbox
Project-specific wiki conventions. Read this before any wiki operation.
This wiki follows Karpathy's LLM Wiki pattern:
**https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f**
## Page types
- `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.
- `overview.md` — single project-wide overview.
## Naming
- `kebab-case.md`, **Latin only**.
## Domain conventions
<!-- Песочница поллера — тестовые артефакты, wiki почти не используется. -->

0
.wiki/concepts/.gitkeep Normal file
View File

0
.wiki/entities/.gitkeep Normal file
View File

23
.wiki/index.md Normal file
View File

@@ -0,0 +1,23 @@
# Wiki Index
Catalog of all wiki pages. One line per page, organized by type.
## Overview
- [overview.md](overview.md) — project overview
## Entities
<!-- (none yet) -->
## Concepts
<!-- (none yet) -->
## Packages
<!-- (none yet) -->
## Sources
<!-- (none yet) -->

15
.wiki/log.md Normal file
View File

@@ -0,0 +1,15 @@
# Wiki Log
Append-only operation log. One entry per operation. Format:
```
## [YYYY-MM-DD] <op> | <one-line description>
```
Operations: `init`, `ingest`, `query`, `lint`, `refactor`, `decision`.
Parseable: `grep "^## \[" .wiki/log.md | tail -20`.
---
## [2026-08-23] init | bootstrap empty wiki via project-bootstrap

3
.wiki/overview.md Normal file
View File

@@ -0,0 +1,3 @@
# poller-sandbox — overview
<!-- Песочница для тестов автономного поллера agents-task-runner. -->

0
.wiki/packages/.gitkeep Normal file
View File

11
.wiki/raw/README.md Normal file
View File

@@ -0,0 +1,11 @@
# Raw Sources
**Immutable.** Read, never edit.
Place raw inputs here — articles, transcripts, PDFs, screenshots — exactly as they came in.
For large or path-sensitive sources that live outside the repo, register them here:
```
- short-name → /absolute/path/to/source
```

0
.wiki/sources/.gitkeep Normal file
View File