Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
920 changes: 920 additions & 0 deletions docs/cli/reference.mdx

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/fern/snippets/_snippets/cli-summary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ description: ""
| Setup | `setup`, `auth`, `services`, `skills` | Set up and run local platform components |
| CLI functions | `chat`, `docs`, `wait`, `agent`, `plugins` | Interactive, documentation, and agent-oriented workflows |
| Core plugins | `files`, `inference`, `jobs`, `models`, `secrets`, `workspaces` | Core platform resources |
| Functional plugins | `guardrail` | Functional service and plugin commands |
| Functional plugins | `guardrail`, `intake` | Functional service and plugin commands |

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -193,4 +193,5 @@ def test_commands_uses_visible_command_order_with_discovered_plugins(self):
"| nemo data-designer | Functional plugins | Plugin commands for data-designer. |",
"| nemo guardrail | Functional plugins | Manage guardrails. |",
"| nemo anonymizer | Functional plugins | Plugin commands for anonymizer. |",
"| nemo intake | Functional plugins | Intake operations. |",
]
4 changes: 4 additions & 0 deletions packages/nemo_platform_ext/tests/cli/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ def test_root_help_includes_lazy_api_commands():
runner = CliRunner()
sys.modules.pop("nemo_platform_ext.cli.commands.api.entities", None)
sys.modules.pop("nemo_platform_ext.cli.commands.api.files", None)
sys.modules.pop("nemo_platform_ext.cli.commands.api.intake", None)
sys.modules.pop("nemo_platform_ext.cli.commands.auth", None)
sys.modules.pop("nemo_platform_ext.cli.commands.use_cases.chat", None)
sys.modules.pop("nemo_platform_ext.cli.commands.config", None)
Expand All @@ -211,9 +212,12 @@ def test_root_help_includes_lazy_api_commands():
assert result.exit_code == 0
assert "files" in result.stdout
assert "Manage files" in result.stdout
assert "intake" in result.stdout
assert "Intake operations." in result.stdout
assert "entities" not in result.stdout
assert "nemo_platform_ext.cli.commands.api.entities" not in sys.modules
assert "nemo_platform_ext.cli.commands.api.files" not in sys.modules
assert "nemo_platform_ext.cli.commands.api.intake" not in sys.modules
assert "nemo_platform_ext.cli.commands.auth" not in sys.modules
assert "nemo_platform_ext.cli.commands.use_cases.chat" not in sys.modules
assert "nemo_platform_ext.cli.commands.config" not in sys.modules
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ top_level:
intake:
panel: Functional plugins
help: Intake operations.
hidden: true
jobs:
panel: Core plugins
help: Manage jobs.
Expand Down
Loading