appydave-tools 0.77.1 → 0.77.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/docs/planning/BACKLOG.md +9 -6
- data/docs/planning/batch-a-features/IMPLEMENTATION_PLAN.md +5 -5
- data/docs/planning/s3-operations-split/AGENTS.md +686 -0
- data/docs/planning/s3-operations-split/IMPLEMENTATION_PLAN.md +42 -0
- data/lib/appydave/tools/dam/s3_base.rb +310 -0
- data/lib/appydave/tools/dam/s3_operations.rb +15 -314
- data/lib/appydave/tools/version.rb +1 -1
- data/lib/appydave/tools.rb +1 -0
- data/package.json +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b3fd2da88a61ae790fb8df1416e8bdf19d25db6631cfbe657741c44af57bfc6
|
|
4
|
+
data.tar.gz: 5bef21a3321a1fbbe97daf51725589a89ed7ddb2f54fb802ea575b506c1cc8cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 449a8fe029e73b879a834c3f8ff806b272dfd1326f2beb9d8b4e1a1cd6f57cccc9f93b452eb8e629870a8fe10c82a42bc11e7b0db2fd8166ff8f2675650eb4c6
|
|
7
|
+
data.tar.gz: 516690c962d2f0ede9c04cfabe9417d99359d8ddd3f0945399f7a2b06f006062b5eaeeb52ce29635a029736a6fa462454edb3b1c18fb534e44e7931385d33932
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.77.1](https://github.com/appydave/appydave-tools/compare/v0.77.0...v0.77.1) (2026-03-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add progress indicators to dam S3 commands (upload, download, status, archive, sync-ssd) ([3fec530](https://github.com/appydave/appydave-tools/commit/3fec53012d23f35d6888165b4c9d1b978c87828b))
|
|
7
|
+
|
|
1
8
|
# [0.77.0](https://github.com/appydave/appydave-tools/compare/v0.76.14...v0.77.0) (2026-03-20)
|
|
2
9
|
|
|
3
10
|
|
data/docs/planning/BACKLOG.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Project Backlog — AppyDave Tools
|
|
2
2
|
|
|
3
|
-
**Last updated**: 2026-03-20 (
|
|
4
|
-
**Total**:
|
|
3
|
+
**Last updated**: 2026-03-20 (batch-a-features campaign complete)
|
|
4
|
+
**Total**: 41 | Pending: 4 | Done: 36 | Deferred: 0 | Rejected: 0
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
@@ -10,11 +10,10 @@
|
|
|
10
10
|
### Medium Priority
|
|
11
11
|
- [ ] B001 — FR-1: GPT Context token counting | Priority: medium
|
|
12
12
|
- [ ] B012 — Arch: add integration tests for brand resolution end-to-end | Priority: medium
|
|
13
|
-
- [ ] B007 — Performance: parallel git/S3 status checks for dam list | Priority: low (
|
|
13
|
+
- [ ] B007 — Performance: parallel git/S3 status checks for dam list | Priority: low (unblocked after B020)
|
|
14
14
|
- [ ] B008 — Performance: cache git/S3 status with 5-min TTL | Priority: low
|
|
15
|
-
- [ ]
|
|
16
|
-
- [ ]
|
|
17
|
-
- [ ] B020 — Arch: split S3Operations (1,030 lines, mixed I/O + logic) | Priority: low (now unblocked)
|
|
15
|
+
- [ ] B020 — Arch: split S3Operations (1,030 lines, mixed I/O + logic) | Priority: medium (next major campaign)
|
|
16
|
+
- [ ] B040 — Fix: ProjectResolver.resolve raises RuntimeError not typed exception (found in B012) | Priority: low
|
|
18
17
|
|
|
19
18
|
---
|
|
20
19
|
|
|
@@ -52,6 +51,10 @@
|
|
|
52
51
|
- [x] B037 — Tests: LocalSyncStatus :partial, local_file_count, Zone.Identifier exclusion, unknown format | Completed: library-boundary-cleanup (2026-03-19), v0.76.11
|
|
53
52
|
- [x] B038 — Cleanup: remove ENV['BRAND_PATH'] dead code from bin/dam (10 assignments) | Completed: env-dead-code-cleanup (2026-03-20), v0.76.13
|
|
54
53
|
- [x] B039 — Tests: strengthen s3_scan_command_spec field assertions + remove LocalSyncStatus stub | Completed: env-dead-code-cleanup (2026-03-20), v0.76.12
|
|
54
|
+
- [x] B012 — Arch: brand resolution integration tests (BrandResolver→Config→ProjectResolver chain) | Completed: batch-a-features (2026-03-20), v0.76.14
|
|
55
|
+
- [x] B001 — FR-1: GPT Context token counting (--tokens flag, warn to stderr, 100k/200k thresholds) | Completed: batch-a-features (2026-03-20), v0.77.0
|
|
56
|
+
- [x] B010 — UX: terminal-width-aware separator lines + truncate_path in project_listing | Completed: batch-a-features (2026-03-20), v0.77.0
|
|
57
|
+
- [x] B009 — UX: progress indicators for dam S3 operations (upload, download, status, archive, sync-ssd) | Completed: batch-a-features (2026-03-20), v0.77.1
|
|
55
58
|
|
|
56
59
|
---
|
|
57
60
|
|
|
@@ -5,17 +5,17 @@
|
|
|
5
5
|
**Target**: All 4 complete, 860+ examples passing, rubocop 0 offenses
|
|
6
6
|
|
|
7
7
|
## Summary
|
|
8
|
-
- Total: 4 | Complete:
|
|
8
|
+
- Total: 4 | Complete: 4 | In Progress: 0 | Pending: 0 | Failed: 0
|
|
9
9
|
|
|
10
10
|
## Pending
|
|
11
11
|
|
|
12
12
|
## In Progress
|
|
13
|
-
- [~] B001 — gpt-context-token-counting — Add --tokens flag to gpt_context; print estimated token count + threshold warnings
|
|
14
|
-
- [~] B009 — dam-progress-indicators — Add before/after progress messages to s3_up, s3_down, s3_status, archive, sync_ssd in bin/dam
|
|
15
|
-
- [~] B010 — dam-column-widths — Terminal-width-aware separator lines + path truncation in project_listing.rb
|
|
16
|
-
- [~] B012 — brand-resolution-integration-tests — Integration spec covering brand→project resolution chain end-to-end
|
|
17
13
|
|
|
18
14
|
## Complete
|
|
15
|
+
- [x] B012 — brand-resolution-integration-tests — 10 examples: Config.brand_path, BrandResolver.expand, ProjectResolver.resolve + detect_from_pwd. Note: resolve raises RuntimeError not typed exception. 870 examples. v0.76.14. Commit: af571e7.
|
|
16
|
+
- [x] B001 — gpt-context-token-counting — --tokens/-t flag added; warn (not $stderr.puts — Style/StderrPuts) to stderr; thresholds at 100k+200k. 870 examples. v0.77.0. Commit: 2c6b9c4.
|
|
17
|
+
- [x] B010 — dam-column-widths — 9 separator lines terminal-width-aware; truncate_path helper added; 4 shorten_path calls updated; require 'io/console' added. Bundled into B001 commit. v0.77.0.
|
|
18
|
+
- [x] B009 — dam-progress-indicators — 5 commands updated (s3_up, s3_down, s3_status, archive, sync_ssd) with verb/dry_run-aware progress messages. 870 examples. v0.77.1. Commit: 3fec530.
|
|
19
19
|
|
|
20
20
|
## Failed / Needs Retry
|
|
21
21
|
|