chore: bootstrap project structure

This commit is contained in:
2026-04-28 10:16:34 +03:00
commit 782a00d6b8
8 changed files with 110 additions and 0 deletions

68
.gitignore vendored Normal file
View File

@@ -0,0 +1,68 @@
# Dependencies
node_modules/
.pnpm-store/
.pnp.*
.yarn/
bower_components/
# Python
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
env/
.python-version
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Build output
dist/
build/
out/
target/
*.tsbuildinfo
# Environment / secrets
.env
.env.*
!.env.example
*.pem
*.key
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# IDE / editor
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
desktop.ini
# Coverage / cache
coverage/
.nyc_output/
.cache/
.parcel-cache/
.next/
.nuxt/
.turbo/
.svelte-kit/
# Misc
*.tmp
.tmp/

5
.tasks/STATUS.md Normal file
View File

@@ -0,0 +1,5 @@
# Task Board
_Updated: 2026-04-28_
<!-- Tasks will appear here as work progresses.
Skill is activated by the phrase: use task management system -->

8
.wiki/SUMMARY.md Normal file
View File

@@ -0,0 +1,8 @@
# Wiki Summary
List of all pages in source/ with one-line descriptions.
The agent updates this file whenever source/ changes.
## Pages
<!-- Empty for now. Pages will appear as the project progresses. -->

15
.wiki/WORKFLOW.md Normal file
View File

@@ -0,0 +1,15 @@
# Wiki Workflow
This wiki follows Karpathy's method: knowledge accumulates rather than being re-derived.
## Rules for the agent
- **Before starting work** — read relevant pages from source/
- **After an important decision** — update or create a page in source/
- **New raw materials** (links, docs, transcripts) — put in raw/
- **Processed knowledge** — write as markdown pages in source/
- **SUMMARY.md** — update whenever a page is added to source/
## Trigger
Skill is activated by the phrase: **use project wiki**

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

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

7
CLAUDE.md Normal file
View File

@@ -0,0 +1,7 @@
# CLAUDE.md
# Agent instructions. Each line is a trigger for an installed skill.
talk like a caveman
use superpowers
use project wiki
use task management system

7
README.md Normal file
View File

@@ -0,0 +1,7 @@
# claude-skills
## About
<!-- Describe the project here -->
## Quick start
<!-- Instructions for running the project -->