Update README and documentation index for v0.3.2 release
All checks were successful
Documentation Validation / validate-docs (push) Successful in 6s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Python Tests / test-python (push) Successful in 12s

- Simplify root README to focus on implemented features and quick navigation
  - Replace verbose project structure with concise feature list
  - Remove recent achievements section (moved to release notes)
  - Add direct links to master index and main documentation
- Update MASTER_INDEX.md to focus on documentation catalog
  - Remove project completion status (moved to release notes)
  - Remove learning path sections (kept in individual path
This commit is contained in:
aitbc
2026-04-23 17:04:03 +02:00
parent e60cc3226c
commit d22f795b56
18 changed files with 1282 additions and 393 deletions

View File

@@ -212,6 +212,20 @@ echo "Gitea-Runner: $(ssh gitea-runner 'cd /opt/aitbc && git rev-parse --short H
### 8. Push to GitHub (Milestone Only)
```bash
# Only push to GitHub for milestones (releases, major features)
# First verify local changes are pushed to Gitea
LOCAL_HASH=$(git rev-parse HEAD)
ORIGIN_HASH=$(git rev-parse origin/main)
if [ "$LOCAL_HASH" != "$ORIGIN_HASH" ]; then
echo "❌ Local changes not pushed to Gitea"
echo "Local: $LOCAL_HASH"
echo "Origin: $ORIGIN_HASH"
echo "Push to Gitea first: git push origin main"
exit 1
fi
echo "✅ Local changes already pushed to Gitea"
# Verify all three nodes are in sync before GitHub push
GENESIS_HASH=$(git rev-parse HEAD)
FOLLOWER_HASH=$(ssh aitbc1 'cd /opt/aitbc && git rev-parse HEAD')