Whether the remote task originated from Copilot Coding Agent (cca) or a CLI `--remote` invocation. Whether the remote task originated from CCA or CLI `--remote`. Task type determines the handoff strategy (CCA fetches events; CLI prepares a transient session).
| 3727 | |
| 3728 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 3729 | class TaskType(Enum): |
| 3730 | """Whether the remote task originated from Copilot Coding Agent (cca) or a CLI `--remote` |
| 3731 | invocation. |
| 3732 | |
| 3733 | Whether the remote task originated from CCA or CLI `--remote`. |
| 3734 | |
| 3735 | Task type determines the handoff strategy (CCA fetches events; CLI prepares a transient |
| 3736 | session). |
| 3737 | """ |
| 3738 | CCA = "cca" |
| 3739 | CLI = "cli" |
| 3740 | |
| 3741 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 3742 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…