docs: clarify workflow agent skills

This commit is contained in:
lda
2026-06-16 21:16:58 +07:00 Verified
parent be2239e716
commit 64bf182d7c
7 changed files with 240 additions and 4 deletions
+9 -1
View File
@@ -78,7 +78,15 @@ def test_wf_cap_list_help_exists() -> None:
assert result.exit_code == 0
assert "--format" in result.output
assert "--source" in result.output
def test_wf_schema_help_marks_command_group_as_wip() -> None:
result = runner.invoke(app, ["schema", "--help"])
assert result.exit_code == 0
output = result.output.lower()
assert "work in progress" in output
assert "no schema subcommands" in output
def test_wf_source_list_help_exists() -> None: