You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update README and CHANGELOG for documentation reorganization
README.md Changes:
- Added "Documentation Structure" section showing new organization
- docs/technical/ for technical debt analysis
- docs/engineering/ for release guides and practices
- docs/architecture/ for system architecture
- docs/progress/ for development progress reports
- to-dos/protocol/ for phase planning
- to-dos/completed/ for completed sessions
- ref-docs/ for protocol specifications
- Updated "Technical Debt & Quality" section paths
- Changed all to-dos/technical-debt/ references to docs/technical/
- Maintained same file names and descriptions
CHANGELOG.md Changes:
- Added documentation reorganization entry under [Unreleased]
- 9 files moved with git history preserved
- Technical debt analysis → docs/technical/
- Release quickstart → docs/engineering/
- Phase planning → to-dos/protocol/
- Completed sessions → to-dos/completed/
- README files added for new directories
- CLAUDE.md updated with new structure
All documentation references now point to correct locations after the
reorganization in commit ef7796c.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+40-15Lines changed: 40 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,12 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
6
6
7
7
WRAITH (Wire-speed Resilient Authenticated Invisible Transfer Handler) is a decentralized secure file transfer protocol. This repository contains the Rust implementation along with design specifications.
8
8
9
-
**Current Status:** Initial implementation scaffolding complete, core modules need implementation.
9
+
**Current Status:** Version 0.9.0 Beta - Phase 10 Sessions 2-3 Complete (Node API orchestration layer, discovery integration, NAT traversal, crypto integration, file transfer integration, obfuscation integration, comprehensive integration testing)
10
+
11
+
**Current Metrics:**
12
+
-**Tests:** 1,025+ tests passing (1,011 active + 14 ignored) - 100% pass rate on active tests
13
+
-**Code Volume:**~36,600 lines of Rust code (~28,700 LOC + ~7,900 comments) across 7 active crates
14
+
-**Documentation:** 60+ files, 45,000+ lines including user guides, API reference, architecture docs
10
15
11
16
## Build & Development Commands
12
17
@@ -40,16 +45,34 @@ cargo run -p wraith-cli -- --help
40
45
41
46
```
42
47
WRAITH-Protocol/
43
-
├── crates/
44
-
│ ├── wraith-core/ # Frame encoding, session state, congestion control
0 commit comments