بنقرة واحدة
bookstrap-archive-project
Archive project with compression and optional cloud upload
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Archive project with compression and optional cloud upload
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Outline creation patterns for fiction and nonfiction book structures, including chapter breakdowns, scene planning, and narrative arc mapping.
Grounded prose composition workflow including pre-write queries, consistency checks, and post-write entity extraction for database-backed writing.
Run editing passes over completed sections for voice consistency, timeline verification, contradiction flagging, and citation coverage
Load research corpus into the database by processing files, directories, or URLs through semantic chunking, embedding generation, entity extraction, and relationship building
Analyze BRD and existing corpus to identify knowledge gaps, then generate prioritized research tasks for filling those gaps
Generate writing tasks from BRD structure and corpus, creating chapter/section tasks with dependencies, pre-write queries, and consistency checks
| name | bookstrap-archive-project |
| description | Archive project with compression and optional cloud upload |
| invoke | skill |
| category | export |
Archive a completed or paused Bookstrap project with compression and optional cloud storage.
/bookstrap-archive-project \
--output archives/my-book-final.tar.gz \
--compress-level 9 \
--upload s3://my-bucket/archives/
| Feature | Export | Archive |
|---|---|---|
| Compression | Standard | Maximum |
| Cloud upload | No | Optional |
| Remove local | No | Optional |
| Checksums | Basic | Full verification |
| Metadata | Simple | Comprehensive |
--compress-level 1: Fast, larger files--compress-level 5: Balanced (default)--compress-level 9: Maximum compression, slower/bookstrap-archive-project \
--output my-book.tar.gz \
--upload s3://bucket-name/path/ \
--s3-region us-east-1
/bookstrap-archive-project \
--output my-book.tar.gz \
--upload gs://bucket-name/path/
/bookstrap-archive-project \
--output my-book.tar.gz \
--upload azure://container-name/path/
Creates archive-metadata.json:
{
"archive_name": "my-book-final.tar.gz",
"created_at": "2026-02-01T12:00:00Z",
"project_name": "My Book",
"status": "completed",
"archive_size_mb": 8.3,
"compression": {
"algorithm": "gzip",
"level": 9,
"original_size_mb": 45.2,
"compressed_size_mb": 8.3,
"ratio": 0.18
},
"contents": {
"chapters": 12,
"sections": 48,
"words": 75420,
"sources": 42,
"entities": 156
},
"cloud_storage": {
"uploaded": true,
"location": "s3://my-bucket/archives/my-book-final.tar.gz",
"checksum": "sha256:abc123..."
},
"restoration": {
"command": "/bookstrap-restore-archive --input my-book-final.tar.gz",
"requires": ["surrealdb", "python3"]
}
}
--compress-level N: Compression level (1-9)--upload URL: Upload to cloud storage--remove-local: Remove local files after archive--encrypt: Encrypt archive with password--verify: Verify archive integrity after creation/bookstrap-archive-project \
--output my-book.tar.gz.enc \
--encrypt \
--password-file .archive-password
After archiving, automatically verifies:
Archiving Bookstrap project...
Preparing archive...
├─ Collecting files... 1,247 files
├─ Compressing with level 9... 45.2 MB → 8.3 MB (81% reduction)
├─ Calculating checksums... Done
├─ Generating metadata... Done
└─ Verifying archive integrity... PASSED
Archive created: my-book-final.tar.gz (8.3 MB)
Uploading to cloud storage...
├─ Destination: s3://my-bucket/archives/my-book-final.tar.gz
├─ Upload progress: [████████████████████] 100%
├─ Verifying upload checksum... MATCH
└─ Upload complete
Archive complete!
Local archive: ./archives/my-book-final.tar.gz
Cloud location: s3://my-bucket/archives/my-book-final.tar.gz
Metadata: ./archives/my-book-final-metadata.json
To restore: /bookstrap-restore-archive --input my-book-final.tar.gz