44 lines
2.0 KiB
Plaintext
44 lines
2.0 KiB
Plaintext
agent-workflow
|
|
|
|
Copyright (c) 2026 liujing
|
|
|
|
This project contains code derived from ZephyrDeng/pi-review,
|
|
which is licensed under the MIT License.
|
|
|
|
The workflow orchestration implementation (workflow-*.ts files)
|
|
was originally developed as part of pi-review and has been
|
|
adapted for agent-workflow with the following changes:
|
|
|
|
- Renamed package from @zephyrdeng/pi-review to agent-workflow
|
|
- Changed CLI commands from "pi-review workflow <cmd>" to "agent-workflow <cmd>"
|
|
- Changed state root from ~/.pi/pi-review/workflows to ~/.agent-workflow/workflows
|
|
- Changed config file from pi-review.workflow.json to agent-workflow.json
|
|
- Changed metadata output from PI_WORKFLOW_META_JSON to AGENT_WORKFLOW_META_JSON
|
|
- Added legacy discovery and cross-root lock checking for pi-review compatibility
|
|
- Removed dependencies on pi-review specific types (ReviewFinding, FindingCluster)
|
|
- Removed Pi package manifest integration
|
|
|
|
Original pi-review copyright notice:
|
|
|
|
MIT License
|
|
|
|
Copyright (c) 2026 ZephyrDeng
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|