diff --git a/.changeset/refactor-377-simplify-descriptions.md b/.changeset/refactor-377-simplify-descriptions.md new file mode 100644 index 00000000..7e87ce2c --- /dev/null +++ b/.changeset/refactor-377-simplify-descriptions.md @@ -0,0 +1,5 @@ +--- +"create-expert": patch +--- + +Simplify verbose descriptions in create-expert delegates diff --git a/apps/create-expert/src/lib/create-expert-toml.ts b/apps/create-expert/src/lib/create-expert-toml.ts index d77fc651..a248c6e7 100644 --- a/apps/create-expert/src/lib/create-expert-toml.ts +++ b/apps/create-expert/src/lib/create-expert-toml.ts @@ -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} ''' @@ -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} ''' @@ -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} ''' @@ -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} ''' @@ -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} ''' @@ -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} '''