Skip to content

Commit 200b616

Browse files
committed
Reorganize repository documentation and configuration
- Restructure documentation into `docs/spec/` and `docs/guide/`. - Update `AGENTS.md` with strict execution and language rules. - Add `Makefile.toml` for standardized `cargo make` tasks. - Add `docs/guide/development/languages/rust.md` with style rules. - Update `.gitignore` and `.taplo.toml` for better workspace hygiene. - Update `Cargo.lock` dependencies.
1 parent bcdd842 commit 200b616

13 files changed

Lines changed: 860 additions & 485 deletions

File tree

.gitignore

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,57 @@
11
# AI
22
.codex
3-
.orchestrator
43
.specify
4+
.worktrees
55

66
# Editor
77
.vscode
8+
.zed
89

910
# Language Specifics
1011

1112
## JavaScript/TypeScript
13+
!.yarn/patches
14+
!.yarn/plugins
15+
!.yarn/releases
16+
!.yarn/versions
17+
*.tsbuildinfo
18+
.next
19+
.pnp
20+
.pnp.*
21+
.pnpm-debug.log*
22+
.vercel
23+
.vite
24+
.yarn/*
25+
build
26+
coverage
27+
dist
28+
next-env.d.ts
1229
node_modules
30+
npm-debug.log*
31+
out/
32+
yarn-debug.log*
33+
yarn-error.log*
1334

1435
## Python
15-
__pycache__
36+
.pytest_cache
1637
.ruff_cache
1738
.venv
39+
__pycache__
1840

1941
## Rust
2042
target
21-
debug
22-
release
23-
*.rs.bk
24-
*.rlib
25-
*.prof*
26-
.idea/
43+
44+
## Swift
45+
.build
46+
xcuserdata
2747

2848
# System
2949
.DS_Store
3050

3151
# General Ignores
3252
*.bak
33-
.env*
3453
*.log
35-
.env
54+
.env*
55+
.turbo
56+
model
3657
tmp

.taplo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
exclude = [
2+
".worktree",
3+
"Makefile.toml",
4+
]
5+
16
[formatting]
27
align_comments = true
38
align_entries = true

0 commit comments

Comments
 (0)