feat(skill): orchestrate workspace business goals - #3
Open
ShirleyGodzilla wants to merge 1 commit into
Open
Conversation
ShirleyGodzilla
marked this pull request as ready for review
August 14, 2026 11:37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add workspace-aware business orchestration to the existing official Multica CLI Skill.
For an open-ended goal, the Skill now:
The in-chat orchestration design is the execution plan. This does not introduce a repository design/specification cycle for business operations.
Why
The existing Skill is strong for direct Issue and CLI operations, but users still need to know which workspace resources contain the relevant knowledge and capabilities. This addition lets technical and non-technical users start from a business outcome, discover what the team already knows and can do, and reuse that work instead of creating parallel resources or acting on stale assumptions.
This is the focused migration of the plan-then-execute gap discussed in multica-ai/multica#6968. It extends the official Skill rather than introducing a competing Skill in the main Multica repository.
Implementation
skills/multica-cli/references/orchestration.mdfor the detailed workflow.SKILL.mdwhile keeping known-target actions in the existing direct flow.No Multica CLI or API changes are required.
Verification
python3 scripts/test-orchestration-contract.pyscripts/test-lint.pyscripts/lint-skill-commands.py --verbosepython3 ~/.codex/skills/.system/skill-creator/scripts/quick_validate.py skills/multica-cligit diff --checkThe command linter resolves all 120 documented invocations against
multica 0.4.26and confirms coverage for all 42 required command paths.AI Disclosure
OpenAI Codex assisted with requirement refinement, implementation, documentation, and verification. The design was constrained to use only the authenticated community CLI, perform targeted rather than full-workspace discovery, avoid API bypasses, and preserve explicit confirmation for side effects.