struct
ACP::Protocol::PlanEntry
- ACP::Protocol::PlanEntry
- Struct
- Value
- Object
Overview
A single entry in an execution plan. See: https://agentclientprotocol.com/protocol/agent-plan#plan-entries
Included Modules
- JSON::Serializable
Defined in:
acp/protocol/updates.crConstructors
- .new(pull : JSON::PullParser)
- .new(content : String, priority : String = "medium", status : String = "pending", meta : Hash(String, JSON::Any) | Nil = nil)
Instance Method Summary
-
#content : String
Human-readable description of what this task aims to accomplish (required).
-
#content=(content : String)
Human-readable description of what this task aims to accomplish (required).
-
#meta : Hash(String, JSON::Any) | Nil
Extension metadata.
-
#meta=(meta : Hash(String, JSON::Any) | Nil)
Extension metadata.
-
#priority : String
The relative importance of this task: "high", "medium", or "low" (required).
-
#priority=(priority : String)
The relative importance of this task: "high", "medium", or "low" (required).
-
#status : String
Current execution status: "pending", "in_progress", or "completed" (required).
-
#status=(status : String)
Current execution status: "pending", "in_progress", or "completed" (required).
-
#title : String
@deprecated Use
#contentinstead.
Constructor Detail
Instance Method Detail
Human-readable description of what this task aims to accomplish (required).
The relative importance of this task: "high", "medium", or "low" (required).
The relative importance of this task: "high", "medium", or "low" (required).
Current execution status: "pending", "in_progress", or "completed" (required).
Current execution status: "pending", "in_progress", or "completed" (required).