Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5455811
reckless: report version without loading config
endothermicdev Oct 20, 2025
7e909b5
reckless: redirect help alias output when --json option is used
endothermicdev Oct 20, 2025
f0f226b
reckless: handle .git in source locations
endothermicdev Oct 21, 2025
5b5f8bf
reckless: cleanup failed installation attempts
endothermicdev Oct 23, 2025
d6adf0f
reckless: add listinstalled command to list reckless managed plugins
endothermicdev Oct 23, 2025
2238d28
reckless: helper function for accessing local clone of remote repo
endothermicdev Oct 28, 2025
6c4137d
reckless: only fetch cloned repositorys once
endothermicdev Oct 30, 2025
8c44fb4
recklessrpc: allow single term commands
endothermicdev Nov 13, 2025
613b955
reckless: Add `listavailable` command to list plugins available to in…
endothermicdev Oct 28, 2025
5848f7c
reckless: handle lack of cloned source in listavailable cmd
endothermicdev Oct 30, 2025
a00f96d
pytest: add reckless listavailable test
endothermicdev Oct 30, 2025
17be3da
reckless: add listconfig command
endothermicdev Nov 5, 2025
866139a
pytest: test reckless listconfig via rpc
endothermicdev Nov 14, 2025
a73cd8a
reckless: check for manifest.json in plugin directories
endothermicdev Nov 21, 2025
c015018
reckless: add shebang installer for fancy plugins
endothermicdev Dec 18, 2025
40cdeee
fixup: remove shebang debugging
endothermicdev Feb 3, 2026
e76c7ea
reckless install: check and warn if a plugin is already installed.
endothermicdev Jan 6, 2026
91576f7
reckless: remove github API access
endothermicdev Jan 8, 2026
15d31e7
reckless: remove remaining traces of API access
endothermicdev Jan 8, 2026
5eceead
reckless: avoid populating uninitialized repo submodules
endothermicdev Jan 15, 2026
24962b1
reckless: ensure repository submodules are always fetched
endothermicdev Jan 15, 2026
3d0a90f
reckless: Add logging port to transmit log messages in real time.
endothermicdev Jan 22, 2026
f947d79
reckless-rpc: open socket for listening to streaming logs
endothermicdev Jan 28, 2026
0c3008d
reckless-rpc: publish reckless log notifications
endothermicdev Jan 28, 2026
2a3bdf2
reckless: close log socket before stdout
endothermicdev Jan 30, 2026
dd9cae8
REMOVE: testing CI
endothermicdev Feb 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions contrib/msggen/msggen/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30038,12 +30038,19 @@
"additionalProperties": false,
"properties": {
"result": {
"type": "array",
"items": {
"type": "string"
},
"description": [
"Output of the requested reckless command."
"oneOf": [
{
"type": "array",
"description": [
"Output of the requested reckless command."
]
},
{
"type": "object",
"description": [
"Output of the requested reckless command."
]
}
]
},
"log": {
Expand Down
5 changes: 3 additions & 2 deletions doc/reckless.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ RETURN VALUE

On success, an object is returned, containing:

- **result** (array of strings): Output of the requested reckless command.:
- (string, optional)
- **result** (one of):
- (array): Output of the requested reckless command.
- (object): Output of the requested reckless command.:
- **log** (array of strings): Verbose log entries of the requested reckless command.:
- (string, optional)

Expand Down
19 changes: 13 additions & 6 deletions doc/schemas/reckless.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,19 @@
"additionalProperties": false,
"properties": {
"result": {
"type": "array",
"items": {
"type": "string"
},
"description": [
"Output of the requested reckless command."
"oneOf": [
{
"type": "array",
"description": [
"Output of the requested reckless command."
]
},
{
"type": "object",
"description": [
"Output of the requested reckless command."
]
}
]
},
"log": {
Expand Down
Loading
Loading