monarchic-agent-protocol 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +204 -0
- data/README.md +215 -26
- data/schemas/v1/artifact.json +62 -12
- data/schemas/v1/dataset_ref.json +45 -0
- data/schemas/v1/delivery_contract.json +78 -0
- data/schemas/v1/eval_result.json +39 -0
- data/schemas/v1/event.json +43 -13
- data/schemas/v1/experiment_spec.json +79 -0
- data/schemas/v1/gate_result.json +16 -13
- data/schemas/v1/monarchic_agent_protocol.proto +98 -0
- data/schemas/v1/objective_spec.json +62 -0
- data/schemas/v1/provenance.json +69 -0
- data/schemas/v1/run_context.json +23 -17
- data/schemas/v1/task.json +89 -23
- data/src/ruby/monarchic_agent_protocol_pb.rb +8 -1
- metadata +11 -3
data/schemas/v1/task.json
CHANGED
|
@@ -1,40 +1,106 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "
|
|
2
|
+
"$id": "monarchic.agent_protocol.v1.Task.schema.json",
|
|
3
3
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
4
|
-
"title": "Task",
|
|
5
|
-
"type": "object",
|
|
6
4
|
"additionalProperties": true,
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"type": "string",
|
|
11
|
-
"const": "v1"
|
|
5
|
+
"patternProperties": {
|
|
6
|
+
"^(deliveryContract)$": {
|
|
7
|
+
"$ref": "monarchic.agent_protocol.v1.DeliveryContract.schema.json"
|
|
12
8
|
},
|
|
13
|
-
"
|
|
14
|
-
"
|
|
9
|
+
"^(experimentSpec)$": {
|
|
10
|
+
"$ref": "monarchic.agent_protocol.v1.ExperimentSpec.schema.json"
|
|
15
11
|
},
|
|
16
|
-
"
|
|
17
|
-
"
|
|
12
|
+
"^(gatesRequired)$": {
|
|
13
|
+
"items": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"type": "array"
|
|
18
17
|
},
|
|
19
|
-
"
|
|
20
|
-
"
|
|
18
|
+
"^(objectiveSpec)$": {
|
|
19
|
+
"$ref": "monarchic.agent_protocol.v1.ObjectiveSpec.schema.json"
|
|
21
20
|
},
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"additionalProperties": true
|
|
21
|
+
"^(runContext)$": {
|
|
22
|
+
"$ref": "monarchic.agent_protocol.v1.RunContext.schema.json"
|
|
25
23
|
},
|
|
24
|
+
"^(taskId)$": {
|
|
25
|
+
"default": "",
|
|
26
|
+
"type": "string"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"properties": {
|
|
26
30
|
"constraints": {
|
|
27
|
-
"
|
|
28
|
-
|
|
31
|
+
"$ref": "google.protobuf.Struct.schema.json"
|
|
32
|
+
},
|
|
33
|
+
"delivery_contract": {
|
|
34
|
+
"$ref": "monarchic.agent_protocol.v1.DeliveryContract.schema.json"
|
|
35
|
+
},
|
|
36
|
+
"experiment_spec": {
|
|
37
|
+
"$ref": "monarchic.agent_protocol.v1.ExperimentSpec.schema.json"
|
|
38
|
+
},
|
|
39
|
+
"extensions": {
|
|
40
|
+
"$ref": "google.protobuf.Struct.schema.json"
|
|
29
41
|
},
|
|
30
42
|
"gates_required": {
|
|
31
|
-
"type": "array",
|
|
32
43
|
"items": {
|
|
33
44
|
"type": "string"
|
|
34
|
-
}
|
|
45
|
+
},
|
|
46
|
+
"type": "array"
|
|
47
|
+
},
|
|
48
|
+
"goal": {
|
|
49
|
+
"default": "",
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"inputs": {
|
|
53
|
+
"$ref": "google.protobuf.Struct.schema.json"
|
|
54
|
+
},
|
|
55
|
+
"objective_spec": {
|
|
56
|
+
"$ref": "monarchic.agent_protocol.v1.ObjectiveSpec.schema.json"
|
|
57
|
+
},
|
|
58
|
+
"role": {
|
|
59
|
+
"anyOf": [
|
|
60
|
+
{
|
|
61
|
+
"pattern": "^AGENT_ROLE_UNSPECIFIED$",
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"enum": [
|
|
66
|
+
"PRODUCT_OWNER",
|
|
67
|
+
"PROJECT_MANAGER",
|
|
68
|
+
"DEV",
|
|
69
|
+
"QA",
|
|
70
|
+
"REVIEWER",
|
|
71
|
+
"SECURITY",
|
|
72
|
+
"OPS",
|
|
73
|
+
"product_owner",
|
|
74
|
+
"project_manager",
|
|
75
|
+
"dev",
|
|
76
|
+
"qa",
|
|
77
|
+
"reviewer",
|
|
78
|
+
"security",
|
|
79
|
+
"ops"
|
|
80
|
+
],
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"maximum": 2147483647,
|
|
85
|
+
"minimum": -2147483648,
|
|
86
|
+
"type": "integer"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"default": 0,
|
|
90
|
+
"title": "Agent Role"
|
|
35
91
|
},
|
|
36
92
|
"run_context": {
|
|
37
|
-
"$ref": "
|
|
93
|
+
"$ref": "monarchic.agent_protocol.v1.RunContext.schema.json"
|
|
94
|
+
},
|
|
95
|
+
"task_id": {
|
|
96
|
+
"default": "",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"version": {
|
|
100
|
+
"default": "",
|
|
101
|
+
"type": "string"
|
|
38
102
|
}
|
|
39
|
-
}
|
|
103
|
+
},
|
|
104
|
+
"title": "Task",
|
|
105
|
+
"type": "object"
|
|
40
106
|
}
|
|
@@ -7,7 +7,7 @@ require 'google/protobuf'
|
|
|
7
7
|
require 'google/protobuf/struct_pb'
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
descriptor_data = "\n\x1emonarchic_agent_protocol.proto\x12\x1bmonarchic.agent_protocol.v1\x1a\x1cgoogle/protobuf/struct.proto\"\
|
|
10
|
+
descriptor_data = "\n\x1emonarchic_agent_protocol.proto\x12\x1bmonarchic.agent_protocol.v1\x1a\x1cgoogle/protobuf/struct.proto\"\xf7\x01\n\nDatasetRef\x12\x12\n\ndataset_id\x18\x01 \x01(\t\x12\x10\n\x03uri\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x0e\n\x06sha256\x18\x03 \x01(\t\x12\x0e\n\x06\x66ormat\x18\x04 \x01(\t\x12\x12\n\x05split\x18\x05 \x01(\tH\x01\x88\x01\x01\x12\x17\n\nsize_bytes\x18\x06 \x01(\x04H\x02\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x07 \x01(\tH\x03\x88\x01\x01\x12+\n\nextensions\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\n\x04_uriB\x08\n\x06_splitB\r\n\x0b_size_bytesB\x0e\n\x0c_description\"\x89\x02\n\x12\x41\x63\x63\x65ptanceCriteria\x12\x0e\n\x06metric\x18\x01 \x01(\t\x12\x11\n\tdirection\x18\x02 \x01(\t\x12\x11\n\tthreshold\x18\x03 \x01(\x01\x12\x1c\n\x0fmin_effect_size\x18\x04 \x01(\x01H\x00\x88\x01\x01\x12\x19\n\x0cmax_variance\x18\x05 \x01(\x01H\x01\x88\x01\x01\x12\x1d\n\x10\x63onfidence_level\x18\x06 \x01(\x01H\x02\x88\x01\x01\x12+\n\nextensions\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructB\x12\n\x10_min_effect_sizeB\x0f\n\r_max_varianceB\x13\n\x11_confidence_level\"\xfc\x02\n\x0e\x45xperimentSpec\x12\x15\n\rexperiment_id\x18\x01 \x01(\t\x12\x11\n\tobjective\x18\x02 \x01(\t\x12\x17\n\nhypothesis\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x19\n\x0cmodel_family\x18\x04 \x01(\tH\x01\x88\x01\x01\x12\r\n\x05seeds\x18\x05 \x03(\x03\x12=\n\x0c\x64\x61taset_refs\x18\x06 \x03(\x0b\x32\'.monarchic.agent_protocol.v1.DatasetRef\x12\x43\n\nacceptance\x18\x07 \x01(\x0b\x32/.monarchic.agent_protocol.v1.AcceptanceCriteria\x12,\n\x0b\x63onstraints\x18\x08 \x01(\x0b\x32\x17.google.protobuf.Struct\x12+\n\nextensions\x18\t \x01(\x0b\x32\x17.google.protobuf.StructB\r\n\x0b_hypothesisB\x0f\n\r_model_family\"\xae\x03\n\x10\x44\x65liveryContract\x12\x11\n\tobjective\x18\x01 \x01(\t\x12\x1a\n\x12\x64\x65\x66inition_of_done\x18\x02 \x03(\t\x12\x17\n\x0frequired_checks\x18\x03 \x03(\t\x12\x11\n\trisk_tier\x18\x04 \x01(\t\x12\x1e\n\x11max_cycle_minutes\x18\x05 \x01(\rH\x00\x88\x01\x01\x12\x1c\n\x0fmax_agent_turns\x18\x06 \x01(\rH\x01\x88\x01\x01\x12\x18\n\x0bpr_strategy\x18\x07 \x01(\tH\x02\x88\x01\x01\x12\x1a\n\rreview_policy\x18\x08 \x01(\tH\x03\x88\x01\x01\x12\x1e\n\x11rollback_strategy\x18\t \x01(\tH\x04\x88\x01\x01\x12\x12\n\x05notes\x18\n \x01(\tH\x05\x88\x01\x01\x12+\n\nextensions\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructB\x14\n\x12_max_cycle_minutesB\x12\n\x10_max_agent_turnsB\x0e\n\x0c_pr_strategyB\x10\n\x0e_review_policyB\x14\n\x12_rollback_strategyB\x08\n\x06_notes\"\xf3\x02\n\rObjectiveSpec\x12\x12\n\nmetric_key\x18\x01 \x01(\t\x12\x11\n\tdirection\x18\x02 \x01(\t\x12\x13\n\x06target\x18\x03 \x01(\x01H\x00\x88\x01\x01\x12\x16\n\tmin_delta\x18\x04 \x01(\x01H\x01\x88\x01\x01\x12\x16\n\ttolerance\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12\x18\n\x0breport_file\x18\x06 \x01(\tH\x03\x88\x01\x01\x12\x1b\n\x0ereport_task_id\x18\x07 \x01(\tH\x04\x88\x01\x01\x12\x13\n\x06weight\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\t \x01(\tH\x06\x88\x01\x01\x12+\n\nextensions\x18\n \x01(\x0b\x32\x17.google.protobuf.StructB\t\n\x07_targetB\x0c\n\n_min_deltaB\x0c\n\n_toleranceB\x0e\n\x0c_report_fileB\x11\n\x0f_report_task_idB\t\n\x07_weightB\x0e\n\x0c_description\"\x8e\x02\n\nEvalResult\x12\x0e\n\x06metric\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x01\x12\x15\n\x08lower_ci\x18\x03 \x01(\x01H\x00\x88\x01\x01\x12\x15\n\x08upper_ci\x18\x04 \x01(\x01H\x01\x88\x01\x01\x12\x15\n\x08variance\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12\x11\n\x04seed\x18\x06 \x01(\x03H\x03\x88\x01\x01\x12\x0e\n\x06passed\x18\x07 \x01(\x08\x12\x12\n\x05notes\x18\x08 \x01(\tH\x04\x88\x01\x01\x12+\n\nextensions\x18\t \x01(\x0b\x32\x17.google.protobuf.StructB\x0b\n\t_lower_ciB\x0b\n\t_upper_ciB\x0b\n\t_varianceB\x07\n\x05_seedB\x08\n\x06_notes\"\xeb\x03\n\nProvenance\x12\x15\n\rprompt_sha256\x18\x01 \x01(\t\x12\x13\n\x0b\x63ode_sha256\x18\x02 \x01(\t\x12\x16\n\x0e\x64\x61taset_sha256\x18\x03 \x03(\t\x12\x0f\n\x07runtime\x18\x04 \x01(\t\x12\x12\n\x05model\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x0e\n\x06runner\x18\x06 \x01(\t\x12\x14\n\x0corchestrator\x18\x07 \x01(\t\x12\x1d\n\x10task_spec_sha256\x18\x08 \x01(\tH\x01\x88\x01\x01\x12\x1c\n\x0fpipeline_sha256\x18\t \x01(\tH\x02\x88\x01\x01\x12\x1b\n\x0e\x63ommand_sha256\x18\n \x01(\tH\x03\x88\x01\x01\x12\x12\n\ncreated_at\x18\x0b \x01(\t\x12\x1b\n\x0esource_task_id\x18\x0c \x01(\tH\x04\x88\x01\x01\x12=\n\x0c\x64\x61taset_refs\x18\r \x03(\x0b\x32\'.monarchic.agent_protocol.v1.DatasetRef\x12+\n\nextensions\x18\x0e \x01(\x0b\x32\x17.google.protobuf.StructB\x08\n\x06_modelB\x13\n\x11_task_spec_sha256B\x12\n\x10_pipeline_sha256B\x11\n\x0f_command_sha256B\x11\n\x0f_source_task_id\"\x9a\x04\n\x04Task\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x0f\n\x07task_id\x18\x02 \x01(\t\x12\x34\n\x04role\x18\x03 \x01(\x0e\x32&.monarchic.agent_protocol.v1.AgentRole\x12\x0c\n\x04goal\x18\x04 \x01(\t\x12\'\n\x06inputs\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12,\n\x0b\x63onstraints\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x16\n\x0egates_required\x18\x07 \x03(\t\x12<\n\x0brun_context\x18\x08 \x01(\x0b\x32\'.monarchic.agent_protocol.v1.RunContext\x12+\n\nextensions\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x44\n\x0f\x65xperiment_spec\x18\n \x01(\x0b\x32+.monarchic.agent_protocol.v1.ExperimentSpec\x12H\n\x11\x64\x65livery_contract\x18\x0b \x01(\x0b\x32-.monarchic.agent_protocol.v1.DeliveryContract\x12\x42\n\x0eobjective_spec\x18\x0c \x01(\x0b\x32*.monarchic.agent_protocol.v1.ObjectiveSpec\"\x9c\x03\n\x08\x41rtifact\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0b\x61rtifact_id\x18\x02 \x01(\t\x12\x0c\n\x04type\x18\x03 \x01(\t\x12\x0f\n\x07summary\x18\x04 \x01(\t\x12\x0c\n\x04path\x18\x05 \x01(\t\x12\x0f\n\x07task_id\x18\x06 \x01(\t\x12+\n\nextensions\x18\x07 \x01(\x0b\x32\x17.google.protobuf.Struct\x12;\n\nprovenance\x18\x08 \x01(\x0b\x32\'.monarchic.agent_protocol.v1.Provenance\x12=\n\x0c\x64\x61taset_refs\x18\t \x03(\x0b\x32\'.monarchic.agent_protocol.v1.DatasetRef\x12=\n\x0c\x65val_results\x18\n \x03(\x0b\x32\'.monarchic.agent_protocol.v1.EvalResult\x12\x44\n\x0f\x65xperiment_spec\x18\x0b \x01(\x0b\x32+.monarchic.agent_protocol.v1.ExperimentSpec\"\xab\x02\n\x05\x45vent\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x12\n\nevent_type\x18\x02 \x01(\t\x12\x11\n\ttimestamp\x18\x03 \x01(\t\x12\x0f\n\x07task_id\x18\x04 \x01(\t\x12\x0e\n\x06status\x18\x05 \x01(\t\x12\x14\n\x07message\x18\x06 \x01(\tH\x00\x88\x01\x01\x12+\n\nextensions\x18\x07 \x01(\x0b\x32\x17.google.protobuf.Struct\x12;\n\nprovenance\x18\x08 \x01(\x0b\x32\'.monarchic.agent_protocol.v1.Provenance\x12=\n\x0c\x65val_results\x18\t \x03(\x0b\x32\'.monarchic.agent_protocol.v1.EvalResultB\n\n\x08_message\"\xb3\x01\n\nGateResult\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x0c\n\x04gate\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\x13\n\x06reason\x18\x04 \x01(\tH\x00\x88\x01\x01\x12)\n\x08\x65vidence\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12+\n\nextensions\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructB\t\n\x07_reason\"\x99\x01\n\nRunContext\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x0c\n\x04repo\x18\x02 \x01(\t\x12\x10\n\x08worktree\x18\x03 \x01(\t\x12\r\n\x05image\x18\x04 \x01(\t\x12\x0e\n\x06runner\x18\x05 \x01(\t\x12\x0e\n\x06labels\x18\x06 \x03(\t\x12+\n\nextensions\x18\x07 \x01(\x0b\x32\x17.google.protobuf.Struct*\x85\x01\n\tAgentRole\x12\x1a\n\x16\x41GENT_ROLE_UNSPECIFIED\x10\x00\x12\x11\n\rPRODUCT_OWNER\x10\x01\x12\x13\n\x0fPROJECT_MANAGER\x10\x02\x12\x07\n\x03\x44\x45V\x10\x03\x12\x06\n\x02QA\x10\x04\x12\x0c\n\x08REVIEWER\x10\x05\x12\x0c\n\x08SECURITY\x10\x06\x12\x07\n\x03OPS\x10\x07\x42\x88\x02\n\x1e\x61i.monarchic.agent_protocol.v1B\x18MonarchicAgentProtocolV1P\x01Zdgithub.com/monarchic-ai/monarchic-agent-protocol/src/go/monarchic/agent_protocol/v1;agent_protocolv1\xa2\x02\x03MAP\xaa\x02\x1aMonarchic.AgentProtocol.V1\xca\x02\x1aMonarchic\\AgentProtocol\\V1\xe2\x02#Monarchic\\AgentProtocol\\V1\\Metadatab\x06proto3"
|
|
11
11
|
|
|
12
12
|
pool = ::Google::Protobuf::DescriptorPool.generated_pool
|
|
13
13
|
pool.add_serialized_file(descriptor_data)
|
|
@@ -15,6 +15,13 @@ pool.add_serialized_file(descriptor_data)
|
|
|
15
15
|
module Monarchic
|
|
16
16
|
module AgentProtocol
|
|
17
17
|
module V1
|
|
18
|
+
DatasetRef = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.DatasetRef").msgclass
|
|
19
|
+
AcceptanceCriteria = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.AcceptanceCriteria").msgclass
|
|
20
|
+
ExperimentSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.ExperimentSpec").msgclass
|
|
21
|
+
DeliveryContract = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.DeliveryContract").msgclass
|
|
22
|
+
ObjectiveSpec = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.ObjectiveSpec").msgclass
|
|
23
|
+
EvalResult = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.EvalResult").msgclass
|
|
24
|
+
Provenance = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.Provenance").msgclass
|
|
18
25
|
Task = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.Task").msgclass
|
|
19
26
|
Artifact = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.Artifact").msgclass
|
|
20
27
|
Event = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("monarchic.agent_protocol.v1.Event").msgclass
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: monarchic-agent-protocol
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Monarchic AI
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-protobuf
|
|
@@ -36,19 +36,27 @@ executables: []
|
|
|
36
36
|
extensions: []
|
|
37
37
|
extra_rdoc_files: []
|
|
38
38
|
files:
|
|
39
|
+
- LICENSE
|
|
39
40
|
- README.md
|
|
40
41
|
- schemas/v1/agent_role.json
|
|
41
42
|
- schemas/v1/artifact.json
|
|
43
|
+
- schemas/v1/dataset_ref.json
|
|
44
|
+
- schemas/v1/delivery_contract.json
|
|
45
|
+
- schemas/v1/eval_result.json
|
|
42
46
|
- schemas/v1/event.json
|
|
47
|
+
- schemas/v1/experiment_spec.json
|
|
43
48
|
- schemas/v1/gate_result.json
|
|
44
49
|
- schemas/v1/monarchic_agent_protocol.proto
|
|
50
|
+
- schemas/v1/objective_spec.json
|
|
51
|
+
- schemas/v1/provenance.json
|
|
45
52
|
- schemas/v1/run_context.json
|
|
46
53
|
- schemas/v1/schema.json
|
|
47
54
|
- schemas/v1/task.json
|
|
48
55
|
- src/ruby/monarchic_agent_protocol.rb
|
|
49
56
|
- src/ruby/monarchic_agent_protocol_pb.rb
|
|
50
57
|
homepage: https://github.com/monarchic-ai/monarchic-agent-protocol
|
|
51
|
-
licenses:
|
|
58
|
+
licenses:
|
|
59
|
+
- LGPL-3.0-only
|
|
52
60
|
metadata: {}
|
|
53
61
|
post_install_message:
|
|
54
62
|
rdoc_options: []
|