appydave-tools 0.21.2 → 0.22.0

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +7 -0
  3. data/bin/dam +137 -0
  4. data/docs/README.md +187 -90
  5. data/docs/architecture/dam/dam-cli-enhancements.md +642 -0
  6. data/docs/architecture/dam/dam-cli-implementation-guide.md +1041 -0
  7. data/docs/architecture/dam/dam-data-model.md +466 -0
  8. data/docs/architecture/dam/dam-visualization-requirements.md +641 -0
  9. data/docs/architecture/dam/implementation-roadmap.md +328 -0
  10. data/docs/architecture/dam/jan-collaboration-guide.md +309 -0
  11. data/lib/appydave/tools/dam/s3_operations.rb +57 -5
  12. data/lib/appydave/tools/dam/s3_scanner.rb +139 -0
  13. data/lib/appydave/tools/version.rb +1 -1
  14. data/lib/appydave/tools.rb +1 -0
  15. data/package.json +1 -1
  16. metadata +37 -32
  17. data/docs/development/CODEX-recommendations.md +0 -258
  18. data/docs/development/README.md +0 -100
  19. /data/docs/{development/pattern-comparison.md → architecture/cli/cli-pattern-comparison.md} +0 -0
  20. /data/docs/{development/cli-architecture-patterns.md → architecture/cli/cli-patterns.md} +0 -0
  21. /data/docs/{project-brand-systems-analysis.md → architecture/configuration/configuration-systems.md} +0 -0
  22. /data/docs/{dam → architecture/dam}/dam-vision.md +0 -0
  23. /data/docs/{dam/prd-client-sharing.md → architecture/dam/design-decisions/002-client-sharing.md} +0 -0
  24. /data/docs/{dam/prd-git-integration.md → architecture/dam/design-decisions/003-git-integration.md} +0 -0
  25. /data/docs/{prd-unified-brands-configuration.md → architecture/design-decisions/001-unified-brands-config.md} +0 -0
  26. /data/docs/{dam/session-summary-2025-11-09.md → architecture/design-decisions/session-2025-11-09.md} +0 -0
  27. /data/docs/{configuration/README.md → guides/configuration-setup.md} +0 -0
  28. /data/docs/{dam → guides/platforms}/windows/README.md +0 -0
  29. /data/docs/{dam → guides/platforms}/windows/dam-testing-plan-windows-powershell.md +0 -0
  30. /data/docs/{dam → guides/platforms}/windows/installation.md +0 -0
  31. /data/docs/{tools → guides/tools}/bank-reconciliation.md +0 -0
  32. /data/docs/{tools → guides/tools}/cli-actions.md +0 -0
  33. /data/docs/{tools → guides/tools}/configuration.md +0 -0
  34. /data/docs/{dam → guides/tools/dam}/dam-testing-plan.md +0 -0
  35. /data/docs/{dam/usage.md → guides/tools/dam/dam-usage.md} +0 -0
  36. /data/docs/{tools → guides/tools}/gpt-context.md +0 -0
  37. /data/docs/{tools → guides/tools}/index.md +0 -0
  38. /data/docs/{tools → guides/tools}/move-images.md +0 -0
  39. /data/docs/{tools → guides/tools}/name-manager.md +0 -0
  40. /data/docs/{tools → guides/tools}/prompt-tools.md +0 -0
  41. /data/docs/{tools → guides/tools}/subtitle-processor.md +0 -0
  42. /data/docs/{tools → guides/tools}/youtube-automation.md +0 -0
  43. /data/docs/{tools → guides/tools}/youtube-manager.md +0 -0
  44. /data/docs/{configuration → templates}/.env.example +0 -0
  45. /data/docs/{configuration → templates}/channels.example.json +0 -0
  46. /data/docs/{configuration → templates}/settings.example.json +0 -0
@@ -1,100 +0,0 @@
1
- # Development Documentation
2
-
3
- This directory contains comprehensive guides for developing and extending appydave-tools.
4
-
5
- ## Quick Links
6
-
7
- ### Architecture Guides
8
- - [CLI Architecture Patterns](./cli-architecture-patterns.md) - **START HERE** when creating new tools
9
-
10
- ## Quick Pattern Selection
11
-
12
- When creating a new CLI tool, use this quick reference:
13
-
14
- ### Single Operation Tool → Pattern 1
15
- **Use when:** Tool performs ONE operation with various options
16
-
17
- **Examples:** `gpt_context`, `move_images`
18
-
19
- **Key files:**
20
- ```
21
- bin/tool_name.rb # CLI executable
22
- lib/appydave/tools/tool_name/
23
- ├── options.rb # Options struct
24
- └── main_logic.rb # Business logic
25
- ```
26
-
27
- **Read:** [Pattern 1 Details](./cli-architecture-patterns.md#pattern-1-single-command-tools)
28
-
29
- ---
30
-
31
- ### 2-5 Commands → Pattern 2
32
- **Use when:** Tool has 2-5 related commands with simple routing
33
-
34
- **Examples:** `subtitle_processor`, `configuration`
35
-
36
- **Key files:**
37
- ```
38
- bin/tool_name.rb # CLI with inline routing
39
- lib/appydave/tools/tool_name/
40
- ├── command_one.rb # Command implementation
41
- └── command_two.rb # Command implementation
42
- ```
43
-
44
- **Read:** [Pattern 2 Details](./cli-architecture-patterns.md#pattern-2-multi-command-with-inline-routing)
45
-
46
- ---
47
-
48
- ### 6+ Commands or Shared Patterns → Pattern 3
49
- **Use when:** Tool has many commands OR commands share validation/execution patterns
50
-
51
- **Examples:** `youtube_manager`
52
-
53
- **Key files:**
54
- ```
55
- bin/tool_name.rb # CLI with BaseAction routing
56
- lib/appydave/tools/
57
- ├── cli_actions/
58
- │ ├── base_action.rb # Shared base (already exists)
59
- │ ├── tool_cmd_one_action.rb # Command as Action class
60
- │ └── tool_cmd_two_action.rb
61
- └── tool_name/
62
- └── service.rb # Business logic
63
- ```
64
-
65
- **Read:** [Pattern 3 Details](./cli-architecture-patterns.md#pattern-3-multi-command-with-baseaction)
66
-
67
- ---
68
-
69
- ## Common Tasks
70
-
71
- ### Adding a New Tool
72
- 1. Choose pattern using [Decision Tree](./cli-architecture-patterns.md#decision-tree)
73
- 2. Follow [Migration Guide](./cli-architecture-patterns.md#migration-guide)
74
- 3. Register in `appydave-tools.gemspec`
75
- 4. Document in `CLAUDE.md`
76
-
77
- ### Understanding Existing Code
78
- - See [Directory Structure](./cli-architecture-patterns.md#directory-structure)
79
- - Review [Best Practices](./cli-architecture-patterns.md#best-practices)
80
-
81
- ### Writing Tests
82
- - Read [Testing Approach](./cli-architecture-patterns.md#testing-approach)
83
- - No `require` statements in specs (handled by `spec_helper`)
84
- - Test business logic, not CLI executables
85
-
86
- ---
87
-
88
- ## Philosophy
89
-
90
- AppyDave Tools follows a **consolidated toolkit philosophy**:
91
- - Multiple independent tools in one repository
92
- - Each tool solves one specific problem
93
- - Clear separation between CLI and business logic
94
- - Business logic can be used programmatically (no CLI dependencies in `lib/`)
95
-
96
- **Full Philosophy:** [Purpose and Philosophy](../purpose-and-philosophy.md)
97
-
98
- ---
99
-
100
- **Last updated:** 2025-11-08
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes