Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions .changeset/refactor-377-simplify-descriptions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-expert": patch
---

Simplify verbose descriptions in create-expert delegates
12 changes: 6 additions & 6 deletions apps/create-expert/src/lib/create-expert-toml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ pick = ["attemptCompletion"]

[experts."property-extractor"]
version = "1.0.0"
description = "Extracts testable properties from user requirements. Provide requirements text. Returns user properties, Perstack properties, usability properties, and external dependencies."
description = "Extracts testable properties from user requirements"
instruction = '''
${PROPERTY_EXTRACTOR_INSTRUCTION}
'''
Expand All @@ -558,7 +558,7 @@ pick = ["attemptCompletion"]

[experts."ecosystem-builder"]
version = "1.0.0"
description = "Creates Expert ecosystem from properties. Provide extracted properties and requirements. Returns perstack.toml with main, demo, and optionally setup/doctor experts."
description = "Creates Expert ecosystem with main, demo, setup, and doctor experts"
instruction = '''
${ECOSYSTEM_BUILDER_INSTRUCTION}
'''
Expand All @@ -573,7 +573,7 @@ pick = ["readTextFile", "appendTextFile", "attemptCompletion"]

[experts."integration-manager"]
version = "1.0.0"
description = "Orchestrates functional and usability testing in parallel. Provide ecosystem info and properties. Returns integration report with scores and recommendations."
description = "Coordinates functional and usability testing, returns quality assessment"
instruction = '''
${INTEGRATION_MANAGER_INSTRUCTION}
'''
Expand All @@ -589,7 +589,7 @@ pick = ["attemptCompletion"]

[experts."functional-manager"]
version = "1.0.0"
description = "Runs happy-path, unhappy-path, and adversarial tests. Provide properties and ecosystem. Returns functional test report with pass/fail counts."
description = "Runs happy-path, unhappy-path, and adversarial tests"
instruction = '''
${FUNCTIONAL_MANAGER_INSTRUCTION}
'''
Expand All @@ -605,7 +605,7 @@ pick = ["attemptCompletion"]

[experts."usability-manager"]
version = "1.0.0"
description = "Tests usability of expert ecosystem (demo, setup, doctor, errors). Provide ecosystem and properties. Returns usability report."
description = "Tests usability of expert ecosystem (demo, setup, doctor, errors)"
instruction = '''
${USABILITY_MANAGER_INSTRUCTION}
'''
Expand All @@ -621,7 +621,7 @@ pick = ["attemptCompletion"]

[experts."expert-tester"]
version = "1.0.0"
description = "Executes tests against experts. Provide stage, expert name, properties, and test cases. Returns property-wise pass/fail results."
description = "Executes tests against experts and reports property-wise results"
instruction = '''
${EXPERT_TESTER_INSTRUCTION}
'''
Expand Down