cline-rb 1.0.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 (58) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +139 -0
  3. data/README.md +1216 -0
  4. data/TODO.md +2 -0
  5. data/lib/cline/cli.rb +373 -0
  6. data/lib/cline/config.rb +100 -0
  7. data/lib/cline/configuration.rb +23 -0
  8. data/lib/cline/data.rb +119 -0
  9. data/lib/cline/file_content.rb +33 -0
  10. data/lib/cline/global_settings.rb +17 -0
  11. data/lib/cline/global_state/api_providers.rb +48 -0
  12. data/lib/cline/global_state/auto_approval.rb +73 -0
  13. data/lib/cline/global_state/browser.rb +52 -0
  14. data/lib/cline/global_state/features.rb +56 -0
  15. data/lib/cline/global_state/general.rb +77 -0
  16. data/lib/cline/global_state/models.rb +127 -0
  17. data/lib/cline/global_state/toggles.rb +33 -0
  18. data/lib/cline/global_state/workspace.rb +41 -0
  19. data/lib/cline/global_state.rb +16 -0
  20. data/lib/cline/log.rb +288 -0
  21. data/lib/cline/logs.rb +136 -0
  22. data/lib/cline/mcp_settings.rb +30 -0
  23. data/lib/cline/model.rb +47 -0
  24. data/lib/cline/models.rb +11 -0
  25. data/lib/cline/overlay_hash.rb +125 -0
  26. data/lib/cline/providers.rb +59 -0
  27. data/lib/cline/schema.rb +144 -0
  28. data/lib/cline/secret_string.rb +83 -0
  29. data/lib/cline/secrets.rb +119 -0
  30. data/lib/cline/serializable/cline_data.rb +131 -0
  31. data/lib/cline/serializable/dir.rb +81 -0
  32. data/lib/cline/serializable/file.rb +106 -0
  33. data/lib/cline/session.rb +87 -0
  34. data/lib/cline/session_data.rb +154 -0
  35. data/lib/cline/session_message.rb +178 -0
  36. data/lib/cline/session_messages.rb +61 -0
  37. data/lib/cline/sessions.rb +30 -0
  38. data/lib/cline/skill.rb +148 -0
  39. data/lib/cline/skills.rb +8 -0
  40. data/lib/cline/task.rb +75 -0
  41. data/lib/cline/task_message.rb +247 -0
  42. data/lib/cline/task_messages.rb +11 -0
  43. data/lib/cline/tasks.rb +30 -0
  44. data/lib/cline/usage.rb +37 -0
  45. data/lib/cline/utils/enumerable_dir_objects.rb +103 -0
  46. data/lib/cline/utils/file.rb +71 -0
  47. data/lib/cline/utils/file_monitor.rb +56 -0
  48. data/lib/cline/utils/logger.rb +37 -0
  49. data/lib/cline/utils/os/linux.rb +43 -0
  50. data/lib/cline/utils/os/mingw32.rb +46 -0
  51. data/lib/cline/utils/os.rb +31 -0
  52. data/lib/cline/utils/schema.rb +290 -0
  53. data/lib/cline/version.rb +6 -0
  54. data/lib/cline/workspace.rb +25 -0
  55. data/lib/cline/workspace_settings.rb +29 -0
  56. data/lib/cline/workspaces.rb +8 -0
  57. data/lib/cline.rb +22 -0
  58. metadata +249 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f2ca7f9e00479a00256f8b855bac70016da1a7a593a5912900820166f1e35d72
4
+ data.tar.gz: 39c24569d60b34127173ae7aac99600b89d419de0443cbd2edbc26a9c7beb509
5
+ SHA512:
6
+ metadata.gz: f64d28459324a8251823c224d605c748c062932ff2dfa83006ee58b6c2b1c364fe8678f7ea5424422b0241c9d0fd375b215ebd19e929d35df7d1d95cd7047b30
7
+ data.tar.gz: 9e93540a9bab1f9cf19adc560057b0b8d20bb095ee6e469d112efc4ddc740f7f88eb624ce6295853bf763497d138ea6d285ee3b621edff206eab0d1d5c355e40
data/CHANGELOG.md ADDED
@@ -0,0 +1,139 @@
1
+ # [v0.0.1](https://github.com/Muriel-Salvan/cline-rb/compare/...v0.0.1) (2026-07-01 12:59:01)
2
+
3
+ ### Patches
4
+
5
+ * [fix: add missing space in CLI usage prefix formatting](https://github.com/Muriel-Salvan/cline-rb/commit/1de8d1e802868e6b0baeb060336d30aa39856a92)
6
+ * [chore: make test stub and compatibility scripts executable](https://github.com/Muriel-Salvan/cline-rb/commit/e3d4db7323f87076f6df77598493886cebff53a6)
7
+ * [chore: remove completed Linux tests TODO entry](https://github.com/Muriel-Salvan/cline-rb/commit/825e2d77bde3cd78fb602a4c80a5afee60c30d12)
8
+ * [test: fix CLI command test expectations for cross-platform line endings](https://github.com/Muriel-Salvan/cline-rb/commit/680ba0bad02959611d339e91ae8356950157d2fc)
9
+ * [test: refactor OS test helpers to mock installed OS behavior](https://github.com/Muriel-Salvan/cline-rb/commit/7338ae288cd581928976cc0b61da92936cdee357)
10
+ * [fix: include Logger in Linux OS utils module to solve bug when killing a process was already missing](https://github.com/Muriel-Salvan/cline-rb/commit/1e457acb08a6b64ccbf06a65f957dc71e750bdd3)
11
+ * [fix: load cline_models properly even when CLI has finished running before](https://github.com/Muriel-Salvan/cline-rb/commit/7d29e0e44f07797531cdbaf95bbef7b14b546cb7)
12
+ * [fix: handle missing config directory on task start](https://github.com/Muriel-Salvan/cline-rb/commit/377aaad46a95ff859250c136a2c04cb23677f55e)
13
+ * [chore(deps): upgrade pty_compat to ~> 2.0 and adapt exit status handling](https://github.com/Muriel-Salvan/cline-rb/commit/2e249296c422deba176817e7fd871745efebe93d)
14
+ * [docs: clean up README table of contents anchors](https://github.com/Muriel-Salvan/cline-rb/commit/67a3d45205835ffc6457ce5531f0a362d95c3c5d)
15
+ * [docs: replace placeholder README with full documentation](https://github.com/Muriel-Salvan/cline-rb/commit/606faaf87a2a24a4800a30edaaaf2bf9a334512d)
16
+ * [feat: add retry mechanism for JSON parsing in safe_json_read](https://github.com/Muriel-Salvan/cline-rb/commit/d2a7519cec604635f638633d3260d589f236380d)
17
+ * [refactor: replace from_cline_json with direct of_hash calls](https://github.com/Muriel-Salvan/cline-rb/commit/f892b2591ce8a1d826ae7c7e924ac69683fa3e13)
18
+ * [refactor: replace .to_json with JSON.dump for consistency](https://github.com/Muriel-Salvan/cline-rb/commit/a8fc1cef88bcc7308ce71baad7550643e7a57109)
19
+ * [docs(global_state): add Public API groups, restructure auto approval](https://github.com/Muriel-Salvan/cline-rb/commit/7d2355cd1079b8a381a742dac5bca2986901896c)
20
+ * [refactor: reorganize YARD group comments and rename test helper variable + Add tests for logs refresh!](https://github.com/Muriel-Salvan/cline-rb/commit/5963fd4170423684fb3cb5595f138eb3b4cb50f3)
21
+ * [feat(config): expose refresh! as public API and add documentation](https://github.com/Muriel-Salvan/cline-rb/commit/c2bcc756fa77125f809b0da26ad54163cba6f435)
22
+ * [test: add code coverage with SimpleCov and documentation generation test](https://github.com/Muriel-Salvan/cline-rb/commit/fb858ca518ace7d8eae1bac3dd214450c5468edf)
23
+ * [feat(cli): send prompt file with explicit read instruction](https://github.com/Muriel-Salvan/cline-rb/commit/39b8577dfc337729d81fc79c0fda41d91931853e)
24
+ * [refactor: Make Schema objects instantiables from Hashes and Arrays](https://github.com/Muriel-Salvan/cline-rb/commit/9182c31837d9b3407fbb6773a484a4900c346e18)
25
+ * [fix(test): replace newline placeholder with magic key](https://github.com/Muriel-Salvan/cline-rb/commit/04e6b4b40df21ee1851956009f11a36257c97d98)
26
+ * [fix(cli): return last assistant message instead of last message](https://github.com/Muriel-Salvan/cline-rb/commit/8c1b1e1dd6759f6e0d6d904f0c9812bb3509d1b6)
27
+ * [feat: support Cline models from config data dir with VSCode fallback](https://github.com/Muriel-Salvan/cline-rb/commit/756f076199d9efcbde01b6666f87c2dce499b9cb)
28
+ * [fix(data): return nil from .vscode when directory is missing](https://github.com/Muriel-Salvan/cline-rb/commit/3b1ac5a83f2f15efc93b56f3a29b65a169a31b85)
29
+ * [feat: add GlobalSettings for auto-update, telemetry, disabled tools](https://github.com/Muriel-Salvan/cline-rb/commit/dd4837ee6d47a845a1f556501052807caf4b7eb8)
30
+ * [feat(config): add main config method merging global and project config](https://github.com/Muriel-Salvan/cline-rb/commit/9bfc34324fb387297436c3e6f0fb92c79a53d0d0)
31
+ * [refactor: symbolize front matter keys in YAML parsing](https://github.com/Muriel-Salvan/cline-rb/commit/96fedd4b0be26e64afdc73d6ef6383c164702b97)
32
+ * [feat: support inline Ruby eval in session message content](https://github.com/Muriel-Salvan/cline-rb/commit/d2bb845e2f7b5ee0c72dc2f64dad66910c22c77d)
33
+ * [feat(cli_stub): support sequential and regexp command matching in mock_commands](https://github.com/Muriel-Salvan/cline-rb/commit/172f2a4367dd44e05ad72db50ce0726ae6f6869c)
34
+ * [feat: add CLI stub for mocking Cline CLI in tests and make it available for other projects](https://github.com/Muriel-Salvan/cline-rb/commit/0a1aeed352a8164657fd6018bc42d41ca72612c0)
35
+ * [fix(cli): expand temp prompt file path and conditionally apply PTY coloring](https://github.com/Muriel-Salvan/cline-rb/commit/f3ea1d8a9c6e6a4a9026634108591a3534cacbc9)
36
+ * [feat(cli): handle long prompts with temp file and adjust RuboCop limits](https://github.com/Muriel-Salvan/cline-rb/commit/2444596c9fde10b218db629d81ae0703cd414464)
37
+ * [fix: handle multiline argument splitting on Windows in test helper and stub](https://github.com/Muriel-Salvan/cline-rb/commit/c7d808b1ba6b486f5d66ac49895b094fd0a35887)
38
+ * [feat: preserve ANSI colors in PTY output when echoing to stdout](https://github.com/Muriel-Salvan/cline-rb/commit/e32c0c2d95693762fb87e16a35062d7665f831e6)
39
+ * [refactor: simplify prompt handling and update Rubocop config](https://github.com/Muriel-Salvan/cline-rb/commit/fb1e303ea7bea578914ebcdafc4dd3f15579ed39)
40
+ * [refactor: rely on Enumerable for 'first' method instead of explicit delegation](https://github.com/Muriel-Salvan/cline-rb/commit/428a4d7b05e73fd6f09d5ee873487b8b984e2158)
41
+ * [feat(configuration): add temp_dir_root config for debug mode](https://github.com/Muriel-Salvan/cline-rb/commit/b8cea20dafc2c9317327c5dcb25bd9d83ce09f89)
42
+ * [feat(config): add centralized configuration system and use it for debug mode](https://github.com/Muriel-Salvan/cline-rb/commit/1161142e82966f9ff97f2217cfef8438ae4b00aa)
43
+ * [docs: add YARD group markers and update temp dir cleanup comment](https://github.com/Muriel-Salvan/cline-rb/commit/c5d2ede9226d0f1c2ab1375f7a8e119c442ed28e)
44
+ * [feat(cli): add debug logging of Cline CLI output on process exit](https://github.com/Muriel-Salvan/cline-rb/commit/307bdc84392d058cef8defb2757b1b088c74458c)
45
+ * [feat: add Providers configuration with delegation and schema support](https://github.com/Muriel-Salvan/cline-rb/commit/7d3a5b87b880794f921eef394ce4914d6240af7f)
46
+ * [refactor: rename GlobalSettings to GlobalState for clarity](https://github.com/Muriel-Salvan/cline-rb/commit/8b6821b5a6fd21eddc40a4e5c15e1df201ddb6e4)
47
+ * [feat(skill): add enabled? method and handle missing SKILL.md](https://github.com/Muriel-Salvan/cline-rb/commit/fdd132e273d1fcab4d764421aa4b76cb09be17b7)
48
+ * [feat(config): merge project and global skills via OverlayHash](https://github.com/Muriel-Salvan/cline-rb/commit/9eb56cdaccc03886791788ff56ce3655d8397038)
49
+ * [feat(skill): add enable/disable methods to toggle skill state](https://github.com/Muriel-Salvan/cline-rb/commit/3b45916c60b2d7e4a25f29e198d1b3534f40737e)
50
+ * [feat: add on_question callback to handle assistant's questions in interactive sessions](https://github.com/Muriel-Salvan/cline-rb/commit/9eafd5fe2655f0d087e1db746102ce744b7b2ab8)
51
+ * [feat: add VSCode plugin data directory access](https://github.com/Muriel-Salvan/cline-rb/commit/11a9e558ed4d036c8954a68c9d9e2bda4f8108ab)
52
+ * [feat: add status and error to task return hash](https://github.com/Muriel-Salvan/cline-rb/commit/1380b8b4f476a7fa317a3787c3851b760f5e36c3)
53
+ * [feat: add error handling schemas and attributes to Log](https://github.com/Muriel-Salvan/cline-rb/commit/f22b9a632c2025783f01cf5826d9d4c8e1ac07c5)
54
+ * [feat: Enhance test helpers with Regexp support and add edge case tests](https://github.com/Muriel-Salvan/cline-rb/commit/c7515b74730c41c2c557baa8cb2dbc9a4373ae48)
55
+ * [feat: replace Open3 with pty_compat for Windows compat and add session tracking](https://github.com/Muriel-Salvan/cline-rb/commit/dc473cabfc60a34fcdcdce233c879f9756d98da9)
56
+ * [test: add tests for log equality with unknown/nested attributes and non-JSON log lines](https://github.com/Muriel-Salvan/cline-rb/commit/104766a3a116de43242d5cdc18a7bc31f64c2226)
57
+ * [feat(logs): handle non-JSON log entries, add save method, and fix time boundary for `from` parameter](https://github.com/Muriel-Salvan/cline-rb/commit/c56cc0c2728449e30ca566c57c3dd3e66413dc71)
58
+ * [test: Move workspace tests in proper files](https://github.com/Muriel-Salvan/cline-rb/commit/9f8e6f6534779b73c93cfda028a9928bd1ce0d32)
59
+ * [refactor(secrets): add with_secrets helper and move equality tests](https://github.com/Muriel-Salvan/cline-rb/commit/07c0ad2870f65ad60933a6d808cfb347bff935ce)
60
+ * [test: add McpSettings test helper and remove obsolete mcp_settings specs](https://github.com/Muriel-Salvan/cline-rb/commit/d05c485fb2cc8762b77387c82a8897ac1fd92525)
61
+ * [refactor: move global settings equality specs to dedicated file](https://github.com/Muriel-Salvan/cline-rb/commit/dd75a72ace71886c1d7b24ddc4b2ec0acdf0fa66)
62
+ * [test: extract GlobalSettings#save specs to own file with helper](https://github.com/Muriel-Salvan/cline-rb/commit/00b316af19dbe4886709c05bcd17bace54274681)
63
+ * [test(data): add equality spec for Cline::Data](https://github.com/Muriel-Salvan/cline-rb/commit/eb4b6a09654d4acd83343731a9e228583d76bd89)
64
+ * [feat(cline): add logs component and restructure data accessors](https://github.com/Muriel-Salvan/cline-rb/commit/eb7ed4f4202cbb9ca42abf153c752de23075d63c)
65
+ * [refactor: simplify config test helpers by merging with_config_dir into with_config](https://github.com/Muriel-Salvan/cline-rb/commit/b1078ddddf884a7cfab56b6a4eb0db79d6d05a11)
66
+ * [feat(config): add sessions support to config and test helpers](https://github.com/Muriel-Salvan/cline-rb/commit/f3986df9a1b93ef94dd06bb09f02ca9f01078a07)
67
+ * [refactor(cli): update task options to match latest CLI spec](https://github.com/Muriel-Salvan/cline-rb/commit/7ff3a14cbdeb8a4691292aaecdb9b822279e3ec9)
68
+ * [feat(session_message): implement to_human for human-readable output](https://github.com/Muriel-Salvan/cline-rb/commit/16c5219feb4702f11712d3baf3b49f51adae6978)
69
+ * [test: ensure message monitor handles root attribute updates correctly](https://github.com/Muriel-Salvan/cline-rb/commit/bbd3e704c749d1c4fdf69e4e9e3b523e34bb9d69)
70
+ * [test: add missing tests for session message attributes and unknown root params](https://github.com/Muriel-Salvan/cline-rb/commit/144c88d569c39a8eecab6f5177ccec52d571e457)
71
+ * [test: add equality specs for SessionMessages](https://github.com/Muriel-Salvan/cline-rb/commit/88403bda6239e417fc3e6bc607c6a587b4d96a45)
72
+ * [fix: include messages in session equality comparison](https://github.com/Muriel-Salvan/cline-rb/commit/52a52b09a2306588ae74f0b9690126e23da68426)
73
+ * [refactor: pass full messages JSON content and relax RuboCop limits](https://github.com/Muriel-Salvan/cline-rb/commit/dbd60e504eab157c4ae2075bdc368da9eb658b99)
74
+ * [test(session): add complete metadata fields and expectations in data spec](https://github.com/Muriel-Salvan/cline-rb/commit/ab313c45c4e374319b02d40cacc0a8f76bd1be98)
75
+ * [fix: improve SessionMessages deserialization and add session test helpers](https://github.com/Muriel-Salvan/cline-rb/commit/7da7f1224cdff8b9de1a7658c6c8b76509d2c0cd)
76
+ * [fix: add missing parentheses in method calls and require 'forwardable'](https://github.com/Muriel-Salvan/cline-rb/commit/cb041a93cf9194c34486a78ff6fcff41b8ef548c)
77
+ * [feat: add session support with data directory access and monitoring](https://github.com/Muriel-Salvan/cline-rb/commit/4b2c17a2794c32022f1db782ffbd3b7d1ec37976)
78
+ * [refactor: improve attribute key mapping in Schema class](https://github.com/Muriel-Salvan/cline-rb/commit/237fbcf7ca2e843638346ccf26fd5b4b26fd4fc1)
79
+ * [refactor: rename Message to TaskMessage for clarity](https://github.com/Muriel-Salvan/cline-rb/commit/e088b50a3d3e03d6d34dba13dbec1717ad1a6871)
80
+ * [refactor: rename Messages to TaskMessages for clarity](https://github.com/Muriel-Salvan/cline-rb/commit/b9969346e773804b6dfdab0e49dd2e6b3a0ebf54)
81
+ * [refactor(config): rename local config to project config](https://github.com/Muriel-Salvan/cline-rb/commit/e51e6295ad84431602d1c85f61ce2917c19f9a8c)
82
+ * [feat(skill): add save method to persist skill files to disk](https://github.com/Muriel-Salvan/cline-rb/commit/101f06a7d067aac3b0a794180ec705691d022409)
83
+ * [refactor(spec): replace with_config_dir with with_config helper](https://github.com/Muriel-Salvan/cline-rb/commit/cff478f037d815f17cf6ef981d36d3a8047bfc99)
84
+ * [feat(config): add #cli method to create Cli instance from config](https://github.com/Muriel-Salvan/cline-rb/commit/fbfba068c768520ec21de16f82ba8ec6400093bd)
85
+ * [feat: add EnumerableDirObjects#new and fix test directory creation](https://github.com/Muriel-Salvan/cline-rb/commit/9a19b2c537143255defeaf3c80197c0abc1ff15a)
86
+ * [refactor: cache discovered files and expose public `files` method](https://github.com/Muriel-Salvan/cline-rb/commit/26123691fd8edad8465fefa77429cb7565c9030e)
87
+ * [test(skill): add file support to helpers and equality spec](https://github.com/Muriel-Salvan/cline-rb/commit/6845973a59e17701b63c76daf65ddb068c2f7313)
88
+ * [feat: add Skills' front matter support, FileContent, rename subdir to subpath](https://github.com/Muriel-Salvan/cline-rb/commit/72a535fb603dcbef256b38906dbee36f4755f896)
89
+ * [refactor: replace @dir instance variable with public dir method](https://github.com/Muriel-Salvan/cline-rb/commit/306d43318fb1b1fa432c739f6c7adb50f604066c)
90
+ * [test: migrate spec data keys from snake_case to camelCase](https://github.com/Muriel-Salvan/cline-rb/commit/a7de9fa915ce4f37115067bc7ca9d94947181725)
91
+ * [feat: add save capability](https://github.com/Muriel-Salvan/cline-rb/commit/9660cf70ba5abbdb88435cc4dbe009070ad4ece7)
92
+ * [feat: add create parameter to data-access methods](https://github.com/Muriel-Salvan/cline-rb/commit/d286574e4694fc44173117d7efa6b31f6276698c)
93
+ * [test: Split specs for Config data, equality, global, and local methods](https://github.com/Muriel-Salvan/cline-rb/commit/c2d7ae7c799012fa4fbd7f28960d9a28873b9059)
94
+ * [refactor: rename `from_file` to `open` in serializable modules](https://github.com/Muriel-Salvan/cline-rb/commit/089f87d80ee9b7df692ee7997baec93e234e0660)
95
+ * [refactor: replace from_dir with open and add to_cline_data method](https://github.com/Muriel-Salvan/cline-rb/commit/dab1b490838e73f269ac106076e6618c0dbad518)
96
+ * [refactor(serialization): migrate to Serializable module and add file monitoring](https://github.com/Muriel-Salvan/cline-rb/commit/dca2b98882ca4af5a780463c4f28fee5b1314c2f)
97
+ * [refactor(cli): enhance task monitoring robustness and add test coverage](https://github.com/Muriel-Salvan/cline-rb/commit/c11b7715adff9ae339437647f52a8e2cbe9b0d97)
98
+ * [refactor: centralize temp directory management with debug mode support](https://github.com/Muriel-Salvan/cline-rb/commit/0aa57a6b271cf4a15ae5b60372f4a48494a4a3ae)
99
+ * [refactor: migrate directory initialization to included module](https://github.com/Muriel-Salvan/cline-rb/commit/58ee84208d2c6697d5a5af55384ed43f8dccf481)
100
+ * [test: reorganize spec files for message and task models](https://github.com/Muriel-Salvan/cline-rb/commit/d5a9b60cfceee43991a1f074b807622fa4e0d3c9)
101
+ * [feat(cli): automatically interrupt on last blocking messages](https://github.com/Muriel-Salvan/cline-rb/commit/3f32a0dbd0bbd47b585b15b5722710465293b4c5)
102
+ * [feat: return last task message in CLI result](https://github.com/Muriel-Salvan/cline-rb/commit/1b24f382daf5933b9f59c658d8fc33696a497606)
103
+ * [refactor: extract task monitoring thread and store current task](https://github.com/Muriel-Salvan/cline-rb/commit/afbb453794bbe4c418f83609d1101f15f2391c3c)
104
+ * [feat(utils): add safe_read with retry for concurrent file access](https://github.com/Muriel-Salvan/cline-rb/commit/ea2c85c8c1e95e8563bbcddb2bd54b49285bd211)
105
+ * [refactor: standardize delegator lists and add missing Enumerable methods](https://github.com/Muriel-Salvan/cline-rb/commit/cc2fc9526a8df0d8339100fa5ed5f4cc008d193e)
106
+ * [refactor(cli): convert `run_cli` to keyword arguments and support optional command](https://github.com/Muriel-Salvan/cline-rb/commit/ae9ccaf051bec933ab0fda81f84df95ab5d95805)
107
+ * [feat(secrets): use SecretString for API keys and secrets](https://github.com/Muriel-Salvan/cline-rb/commit/247b0d7730f06a0e446b5b61bbe6fc877e17d749)
108
+ * [feat: add secrets management for API keys stored in data directory](https://github.com/Muriel-Salvan/cline-rb/commit/f3206ff58be40fe0144f11789a256de538ce3d9c)
109
+ * [chore: Add conditional Windows win32ole dependency & clean test helpers](https://github.com/Muriel-Salvan/cline-rb/commit/8332ef5d7318a65ef44b4c4c2616913cdd656715)
110
+ * [feat: Implement task message human formatting, update rubocop & add gems](https://github.com/Muriel-Salvan/cline-rb/commit/1d5779ff31933b2c30fc8500dbcaf0559ab9742f)
111
+ * [test: Split Datas tasks specs, with_task helper & adjust rubocop rules](https://github.com/Muriel-Salvan/cline-rb/commit/e0d05ef44c59372b0a6c9f174c5dcc4c1e3e8852)
112
+ * [feat: add Ruby Time timestamp helper method to Message class](https://github.com/Muriel-Salvan/cline-rb/commit/77fe35c33bdcc77d5d95e27cca64808014f2c7f7)
113
+ * [refactor(config): Extract OS home directory logic into dedicated Utils::Os module](https://github.com/Muriel-Salvan/cline-rb/commit/5db92a8375309186afb2372fe240442b192df455)
114
+ * [feat(cli): Implement running command interrupt with full process tree termination](https://github.com/Muriel-Salvan/cline-rb/commit/3f369966490a35278d3d2b9d4819da3ffcbe0e6b)
115
+ * [feat: Add Config.local accessor for loading local repository cline config](https://github.com/Muriel-Salvan/cline-rb/commit/f36bb7f22764a9ce635495c0e556ae007854d473)
116
+ * [test(cli): add sequence execution test for multiple chained CLI commands](https://github.com/Muriel-Salvan/cline-rb/commit/18a06ce624a02cabbf3a5cfd6628d21d9b3ce820)
117
+ * [test(cli): add batched concurrent message handling test for task command](https://github.com/Muriel-Salvan/cline-rb/commit/2490accf32ec7146c84b30b17d81ebff3c229eff)
118
+ * [feat: Add real-time task message monitoring support to CLI interface](https://github.com/Muriel-Salvan/cline-rb/commit/7c07257cc5ea069e3dcf04a8948f4ad0d0aaa60d)
119
+ * [feat: Add cross-OS global config access & extract reusable test setup helpers](https://github.com/Muriel-Salvan/cline-rb/commit/8595b1a9c64875ddd5daa618c81d7dab23efc3a0)
120
+ * [test: add stdout echo behavior tests for shared CLI command examples](https://github.com/Muriel-Salvan/cline-rb/commit/592976658c519520f1b7e65609e4a948b4bdfecd)
121
+ * [fix(cli): Fix stdin redirection spacing and add task CLI command test coverage](https://github.com/Muriel-Salvan/cline-rb/commit/1bef6f63193ef3efbb24d6fb5edeec669f8c6a30)
122
+ * [test: Add expect_issued_commands helper, refactor CLI shared test examples](https://github.com/Muriel-Salvan/cline-rb/commit/7051c1ac38a78a909605871543ce9f4dfe95c4db)
123
+ * [refactor(test): Migrate auth CLI specs to use reusable shared examples](https://github.com/Muriel-Salvan/cline-rb/commit/ef4755d8a82e69229d3e29f9b99e17b6e4403cd2)
124
+ * [test(cli): extract generic cli base tests from auth spec into dedicated file](https://github.com/Muriel-Salvan/cline-rb/commit/d9c64374a0da1310dcdfad06c1bc5c3d5e2ea802)
125
+ * [feat: Add Cline CLI wrapper class with auth and task commands](https://github.com/Muriel-Salvan/cline-rb/commit/eb39085f3afe592ddb801cba62a80734afead606)
126
+ * [feat: Make messages monitoring optionally without block](https://github.com/Muriel-Salvan/cline-rb/commit/cb9816e29f28cfbc486475a43e40e0d4b5247ac0)
127
+ * [feat: Add task message monitoring with callback support for message changes](https://github.com/Muriel-Salvan/cline-rb/commit/082d8c7b3eb003b80c246446b3b2265afbb303db)
128
+ * [feat(core): Add usage information to messages](https://github.com/Muriel-Salvan/cline-rb/commit/cd3fc88d31e462486cd4008e838291c35fa58c69)
129
+ * [feat: Add cached Cline models storage, schema and data layer support](https://github.com/Muriel-Salvan/cline-rb/commit/0145f793feb9251cc7fd73013df7591426dc194e)
130
+ * [feat: Add Skill identity, from_dir safety guard, and test config helpers](https://github.com/Muriel-Salvan/cline-rb/commit/aa0f95fbff9b1dbfbba53daa5ab0e963e7444840)
131
+ * [feat: add [] access to Messages, tasks test helper, and task data specs](https://github.com/Muriel-Salvan/cline-rb/commit/7463879a8aa3f63f4871e3d141f1f43b8994380e)
132
+ * [test: Add global and mcp settings #== tests, fix test helper workspace handling](https://github.com/Muriel-Salvan/cline-rb/commit/e1909d2b8da2fe662858db1f438c0c2c2faeba63)
133
+ * [test: add workspace equality operator test coverage with helper improvements](https://github.com/Muriel-Salvan/cline-rb/commit/5a41cb94e640343ef46e5fe8e48747107c7eae35)
134
+ * [test: Add workspace test helper, fix to_hash calls, add workspaces spec](https://github.com/Muriel-Salvan/cline-rb/commit/eab6e4afae83850fdbad751f6fe5706b7a272546)
135
+ * [refactor(test): Extract with_data_dir helper, clean specs & add yard test TODO](https://github.com/Muriel-Salvan/cline-rb/commit/65408cf4e00ef8b55393f0173f7e34f8effab501)
136
+ * [chore: Adjust rubocop limits, fix docs, add schema helpers & settings tests](https://github.com/Muriel-Salvan/cline-rb/commit/6a9b0f3651c92a29496979ca05dab0a7ce14287d)
137
+ * [feat(tools): Add data compatibility check utilities for cline-rb serialisation](https://github.com/Muriel-Salvan/cline-rb/commit/2819f3f0d03713323af0636dfcf18d40699f54b2)
138
+ * [feat(core): Add Config, Data, Skills, Workspaces and Tasks features, parsing Cline directories](https://github.com/Muriel-Salvan/cline-rb/commit/7a0d0a1e05ef17c09ffe0d8994626ec45d5b2317)
139
+ * [chore: update rubocop config, add dependencies & refine project descriptions](https://github.com/Muriel-Salvan/cline-rb/commit/efa072b1e10d3fd1bab96edd84541a52badf74a1)