├── .clj-kondo └── config.edn ├── .github ├── CODEOWNERS └── workflows │ └── clojure.yml ├── .gitignore ├── CHANGES.md ├── LICENSE ├── README.md ├── bb.edn ├── deps.edn ├── doc ├── babashka-cli.md ├── caching.md ├── cljdoc.edn ├── completions.md ├── defcommand.md ├── dispatch.md ├── experimental.md ├── extra-options.md ├── images │ ├── app-admin-abbrev.png │ ├── app-admin-error.png │ ├── app-admin-help.png │ ├── app-admin-success.png │ ├── cli-tools-zsh-completion.gif │ ├── flow-colors.png │ ├── job-board-demo.gif │ └── top-level-help.png ├── jobs.md ├── jvm.md ├── lint.md ├── overview.md ├── script.md ├── styles.md ├── testing.md ├── tips.md └── transform.md ├── examples ├── app-admin │ ├── bin │ │ ├── app-admin │ │ └── bb.edn │ └── src │ │ └── app_admin │ │ └── commands.clj └── testbed │ ├── bb.edn │ └── testbed ├── images └── example-usage.png ├── resources ├── clj-kondo.exports │ └── io.github.hlship │ │ └── cli-tools │ │ ├── cli_tools │ │ └── hooks.clj │ │ └── config.edn └── net │ └── lewisship │ └── cli_tools │ ├── command.tpl │ ├── group.tpl │ └── top-level.tpl ├── scale-test ├── .gitignore ├── scale_test.clj └── templates │ ├── app.edn │ ├── bb.edn │ ├── command-ns.edn │ ├── deps.edn │ └── main.edn ├── src └── net │ └── lewisship │ ├── cli_tools.clj │ └── cli_tools │ ├── bb_cli.cljc │ ├── builtins.clj │ ├── cache.cljc │ ├── colors.clj │ ├── completions.clj │ ├── impl.clj │ ├── job_status.clj │ ├── job_status_demo.clj │ ├── progress.clj │ ├── specs.clj │ ├── styles.clj │ ├── terminal.clj │ └── test.clj ├── test-resources ├── alt-tool-help.txt ├── app-admin ├── app_admin │ └── commands.clj ├── bb.edn ├── combo-help.txt ├── data_readers.clj ├── excess-values.txt ├── expected │ ├── messy-completions.txt │ ├── simple-completions.txt │ ├── subgroup-completions.txt │ └── tool-options.txt ├── help-incomplete-nested.txt ├── help-incomplete.txt ├── help-with-color-enabled.txt ├── help-with-no-color.txt ├── help.txt ├── insufficient-values.txt ├── let-directive.txt ├── messy-full-help.txt ├── option-defaults.txt ├── pos-arg-validation-failure.txt ├── set-mode-doc.txt ├── sub-group-help.txt ├── tool-help-group-default.txt ├── tool-help-group-full.txt ├── tool-help-grouped.txt ├── tool-help-search-no-match.txt ├── tool-help-search.txt ├── tool-help.txt └── unknown-option.txt └── test ├── net └── lewisship │ ├── abort_test.clj │ ├── cli_tools │ ├── alt_handler.clj │ ├── aux.clj │ ├── bb.clj │ ├── bb_test.clj │ ├── completion_group.clj │ ├── completions_test.clj │ ├── custom_tool_handler_test.clj │ ├── group_nested.clj │ ├── impl_test.clj │ ├── messy_test.clj │ ├── progress_test.clj │ └── test_test.clj │ ├── cli_tools_test.clj │ ├── conflict.clj │ ├── example_ns.clj │ ├── group_default_ns.clj │ ├── group_ns.clj │ ├── messy.clj │ └── messy_commands.clj └── user.clj /.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/.clj-kondo/config.edn -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hlship 2 | -------------------------------------------------------------------------------- /.github/workflows/clojure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/.github/workflows/clojure.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/README.md -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/bb.edn -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/deps.edn -------------------------------------------------------------------------------- /doc/babashka-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/babashka-cli.md -------------------------------------------------------------------------------- /doc/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/caching.md -------------------------------------------------------------------------------- /doc/cljdoc.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/cljdoc.edn -------------------------------------------------------------------------------- /doc/completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/completions.md -------------------------------------------------------------------------------- /doc/defcommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/defcommand.md -------------------------------------------------------------------------------- /doc/dispatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/dispatch.md -------------------------------------------------------------------------------- /doc/experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/experimental.md -------------------------------------------------------------------------------- /doc/extra-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/extra-options.md -------------------------------------------------------------------------------- /doc/images/app-admin-abbrev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/app-admin-abbrev.png -------------------------------------------------------------------------------- /doc/images/app-admin-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/app-admin-error.png -------------------------------------------------------------------------------- /doc/images/app-admin-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/app-admin-help.png -------------------------------------------------------------------------------- /doc/images/app-admin-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/app-admin-success.png -------------------------------------------------------------------------------- /doc/images/cli-tools-zsh-completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/cli-tools-zsh-completion.gif -------------------------------------------------------------------------------- /doc/images/flow-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/flow-colors.png -------------------------------------------------------------------------------- /doc/images/job-board-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/job-board-demo.gif -------------------------------------------------------------------------------- /doc/images/top-level-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/images/top-level-help.png -------------------------------------------------------------------------------- /doc/jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/jobs.md -------------------------------------------------------------------------------- /doc/jvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/jvm.md -------------------------------------------------------------------------------- /doc/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/lint.md -------------------------------------------------------------------------------- /doc/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/overview.md -------------------------------------------------------------------------------- /doc/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/script.md -------------------------------------------------------------------------------- /doc/styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/styles.md -------------------------------------------------------------------------------- /doc/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/testing.md -------------------------------------------------------------------------------- /doc/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/tips.md -------------------------------------------------------------------------------- /doc/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/doc/transform.md -------------------------------------------------------------------------------- /examples/app-admin/bin/app-admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/examples/app-admin/bin/app-admin -------------------------------------------------------------------------------- /examples/app-admin/bin/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/examples/app-admin/bin/bb.edn -------------------------------------------------------------------------------- /examples/app-admin/src/app_admin/commands.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/examples/app-admin/src/app_admin/commands.clj -------------------------------------------------------------------------------- /examples/testbed/bb.edn: -------------------------------------------------------------------------------- 1 | {:deps {io.github.hlship/cli-tools {:local/root "../.."}}} 2 | -------------------------------------------------------------------------------- /examples/testbed/testbed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/examples/testbed/testbed -------------------------------------------------------------------------------- /images/example-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/images/example-usage.png -------------------------------------------------------------------------------- /resources/clj-kondo.exports/io.github.hlship/cli-tools/cli_tools/hooks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/resources/clj-kondo.exports/io.github.hlship/cli-tools/cli_tools/hooks.clj -------------------------------------------------------------------------------- /resources/clj-kondo.exports/io.github.hlship/cli-tools/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/resources/clj-kondo.exports/io.github.hlship/cli-tools/config.edn -------------------------------------------------------------------------------- /resources/net/lewisship/cli_tools/command.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/resources/net/lewisship/cli_tools/command.tpl -------------------------------------------------------------------------------- /resources/net/lewisship/cli_tools/group.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/resources/net/lewisship/cli_tools/group.tpl -------------------------------------------------------------------------------- /resources/net/lewisship/cli_tools/top-level.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/resources/net/lewisship/cli_tools/top-level.tpl -------------------------------------------------------------------------------- /scale-test/.gitignore: -------------------------------------------------------------------------------- 1 | uber 2 | -------------------------------------------------------------------------------- /scale-test/scale_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/scale-test/scale_test.clj -------------------------------------------------------------------------------- /scale-test/templates/app.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/scale-test/templates/app.edn -------------------------------------------------------------------------------- /scale-test/templates/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/scale-test/templates/bb.edn -------------------------------------------------------------------------------- /scale-test/templates/command-ns.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/scale-test/templates/command-ns.edn -------------------------------------------------------------------------------- /scale-test/templates/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/scale-test/templates/deps.edn -------------------------------------------------------------------------------- /scale-test/templates/main.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/scale-test/templates/main.edn -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/bb_cli.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/bb_cli.cljc -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/builtins.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/builtins.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/cache.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/cache.cljc -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/colors.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/colors.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/completions.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/completions.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/impl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/impl.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/job_status.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/job_status.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/job_status_demo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/job_status_demo.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/progress.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/progress.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/specs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/specs.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/styles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/styles.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/terminal.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/terminal.clj -------------------------------------------------------------------------------- /src/net/lewisship/cli_tools/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/src/net/lewisship/cli_tools/test.clj -------------------------------------------------------------------------------- /test-resources/alt-tool-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/alt-tool-help.txt -------------------------------------------------------------------------------- /test-resources/app-admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/app-admin -------------------------------------------------------------------------------- /test-resources/app_admin/commands.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/app_admin/commands.clj -------------------------------------------------------------------------------- /test-resources/bb.edn: -------------------------------------------------------------------------------- 1 | {:paths ["."] 2 | :deps {io.github.hlship/cli-tools {:local/root ".."}}} 3 | -------------------------------------------------------------------------------- /test-resources/combo-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/combo-help.txt -------------------------------------------------------------------------------- /test-resources/data_readers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/data_readers.clj -------------------------------------------------------------------------------- /test-resources/excess-values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/excess-values.txt -------------------------------------------------------------------------------- /test-resources/expected/messy-completions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/expected/messy-completions.txt -------------------------------------------------------------------------------- /test-resources/expected/simple-completions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/expected/simple-completions.txt -------------------------------------------------------------------------------- /test-resources/expected/subgroup-completions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/expected/subgroup-completions.txt -------------------------------------------------------------------------------- /test-resources/expected/tool-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/expected/tool-options.txt -------------------------------------------------------------------------------- /test-resources/help-incomplete-nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/help-incomplete-nested.txt -------------------------------------------------------------------------------- /test-resources/help-incomplete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/help-incomplete.txt -------------------------------------------------------------------------------- /test-resources/help-with-color-enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/help-with-color-enabled.txt -------------------------------------------------------------------------------- /test-resources/help-with-no-color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/help-with-no-color.txt -------------------------------------------------------------------------------- /test-resources/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/help.txt -------------------------------------------------------------------------------- /test-resources/insufficient-values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/insufficient-values.txt -------------------------------------------------------------------------------- /test-resources/let-directive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/let-directive.txt -------------------------------------------------------------------------------- /test-resources/messy-full-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/messy-full-help.txt -------------------------------------------------------------------------------- /test-resources/option-defaults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/option-defaults.txt -------------------------------------------------------------------------------- /test-resources/pos-arg-validation-failure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/pos-arg-validation-failure.txt -------------------------------------------------------------------------------- /test-resources/set-mode-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/set-mode-doc.txt -------------------------------------------------------------------------------- /test-resources/sub-group-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/sub-group-help.txt -------------------------------------------------------------------------------- /test-resources/tool-help-group-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/tool-help-group-default.txt -------------------------------------------------------------------------------- /test-resources/tool-help-group-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/tool-help-group-full.txt -------------------------------------------------------------------------------- /test-resources/tool-help-grouped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/tool-help-grouped.txt -------------------------------------------------------------------------------- /test-resources/tool-help-search-no-match.txt: -------------------------------------------------------------------------------- 1 | No commands match xyzzyx 2 | -------------------------------------------------------------------------------- /test-resources/tool-help-search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/tool-help-search.txt -------------------------------------------------------------------------------- /test-resources/tool-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/tool-help.txt -------------------------------------------------------------------------------- /test-resources/unknown-option.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test-resources/unknown-option.txt -------------------------------------------------------------------------------- /test/net/lewisship/abort_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/abort_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/alt_handler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/alt_handler.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/aux.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/aux.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/bb.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/bb.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/bb_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/bb_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/completion_group.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/completion_group.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/completions_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/completions_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/custom_tool_handler_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/custom_tool_handler_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/group_nested.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/group_nested.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/impl_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/impl_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/messy_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/messy_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/progress_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/progress_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools/test_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools/test_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/cli_tools_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/cli_tools_test.clj -------------------------------------------------------------------------------- /test/net/lewisship/conflict.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/conflict.clj -------------------------------------------------------------------------------- /test/net/lewisship/example_ns.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/example_ns.clj -------------------------------------------------------------------------------- /test/net/lewisship/group_default_ns.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/group_default_ns.clj -------------------------------------------------------------------------------- /test/net/lewisship/group_ns.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/group_ns.clj -------------------------------------------------------------------------------- /test/net/lewisship/messy.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/messy.clj -------------------------------------------------------------------------------- /test/net/lewisship/messy_commands.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/net/lewisship/messy_commands.clj -------------------------------------------------------------------------------- /test/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlship/cli-tools/HEAD/test/user.clj --------------------------------------------------------------------------------