@evalops/sdk-ts 0.1.106 → 0.1.108

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.
package/README.md CHANGED
@@ -13,3 +13,10 @@ import {
13
13
 
14
14
  The `_pb` exports contain protobuf message schemas and service descriptors that
15
15
  can be passed to Connect clients.
16
+
17
+ ```ts
18
+ import {
19
+ RecordsService,
20
+ GetRecordRequestSchema,
21
+ } from "@evalops/sdk-ts/records/v1/records_pb";
22
+ ```
@@ -665,12 +665,209 @@ export type RuntimeContext = Message<"agentruntime.v1.RuntimeContext"> & {
665
665
  * @generated from field: repeated agentruntime.v1.RuntimeVirtualFile virtual_files = 3;
666
666
  */
667
667
  virtualFiles: RuntimeVirtualFile[];
668
+ /**
669
+ * Typed profile for persistent teammate runtime capabilities. Workers and
670
+ * channel renderers should use this field as the source of truth; any VFS
671
+ * JSON projection is only a compatibility/read surface.
672
+ *
673
+ * @generated from field: agentruntime.v1.TeammateCapabilityProfile teammate_capability_profile = 4;
674
+ */
675
+ teammateCapabilityProfile?: TeammateCapabilityProfile | undefined;
668
676
  };
669
677
  /**
670
678
  * Describes the message agentruntime.v1.RuntimeContext.
671
679
  * Use `create(RuntimeContextSchema)` to create a new message.
672
680
  */
673
681
  export declare const RuntimeContextSchema: GenMessage<RuntimeContext>;
682
+ /**
683
+ * TeammateCapabilityProfile describes the runtime capability and isolation
684
+ * contract Platform grants to a persistent teammate run.
685
+ *
686
+ * @generated from message agentruntime.v1.TeammateCapabilityProfile
687
+ */
688
+ export type TeammateCapabilityProfile = Message<"agentruntime.v1.TeammateCapabilityProfile"> & {
689
+ /**
690
+ * @generated from field: string schema_version = 1;
691
+ */
692
+ schemaVersion: string;
693
+ /**
694
+ * @generated from field: string run_id = 2;
695
+ */
696
+ runId: string;
697
+ /**
698
+ * @generated from field: string workspace_id = 3;
699
+ */
700
+ workspaceId: string;
701
+ /**
702
+ * @generated from field: string agent_id = 4;
703
+ */
704
+ agentId: string;
705
+ /**
706
+ * @generated from field: string work_envelope_id = 5;
707
+ */
708
+ workEnvelopeId: string;
709
+ /**
710
+ * @generated from field: string work_envelope_kind = 6;
711
+ */
712
+ workEnvelopeKind: string;
713
+ /**
714
+ * @generated from field: string surface = 7;
715
+ */
716
+ surface: string;
717
+ /**
718
+ * @generated from field: string channel_kind = 8;
719
+ */
720
+ channelKind: string;
721
+ /**
722
+ * @generated from field: string execution_owner = 9;
723
+ */
724
+ executionOwner: string;
725
+ /**
726
+ * @generated from field: string channel_ingress_owner = 10;
727
+ */
728
+ channelIngressOwner: string;
729
+ /**
730
+ * @generated from field: string channel_renderer = 11;
731
+ */
732
+ channelRenderer: string;
733
+ /**
734
+ * @generated from field: string scheduler_owner = 12;
735
+ */
736
+ schedulerOwner: string;
737
+ /**
738
+ * @generated from field: string memory_owner = 13;
739
+ */
740
+ memoryOwner: string;
741
+ /**
742
+ * @generated from field: string evidence_owner = 14;
743
+ */
744
+ evidenceOwner: string;
745
+ /**
746
+ * @generated from field: string privilege_model = 15;
747
+ */
748
+ privilegeModel: string;
749
+ /**
750
+ * @generated from field: bool always_on = 16;
751
+ */
752
+ alwaysOn: boolean;
753
+ /**
754
+ * @generated from field: bool ambient = 17;
755
+ */
756
+ ambient: boolean;
757
+ /**
758
+ * @generated from field: repeated agentruntime.v1.TeammateCapability capabilities = 18;
759
+ */
760
+ capabilities: TeammateCapability[];
761
+ /**
762
+ * @generated from field: repeated agentruntime.v1.TeammateExecutionStep execution_path = 19;
763
+ */
764
+ executionPath: TeammateExecutionStep[];
765
+ /**
766
+ * @generated from field: repeated string isolation_boundaries = 20;
767
+ */
768
+ isolationBoundaries: string[];
769
+ /**
770
+ * @generated from field: repeated string context_paths = 21;
771
+ */
772
+ contextPaths: string[];
773
+ /**
774
+ * @generated from field: repeated string guardrails = 22;
775
+ */
776
+ guardrails: string[];
777
+ };
778
+ /**
779
+ * Describes the message agentruntime.v1.TeammateCapabilityProfile.
780
+ * Use `create(TeammateCapabilityProfileSchema)` to create a new message.
781
+ */
782
+ export declare const TeammateCapabilityProfileSchema: GenMessage<TeammateCapabilityProfile>;
783
+ /**
784
+ * TeammateCapability is one Platform-owned capability made available to a run.
785
+ *
786
+ * @generated from message agentruntime.v1.TeammateCapability
787
+ */
788
+ export type TeammateCapability = Message<"agentruntime.v1.TeammateCapability"> & {
789
+ /**
790
+ * @generated from field: string id = 1;
791
+ */
792
+ id: string;
793
+ /**
794
+ * @generated from field: string owner = 2;
795
+ */
796
+ owner: string;
797
+ /**
798
+ * @generated from field: repeated string contract_paths = 3;
799
+ */
800
+ contractPaths: string[];
801
+ /**
802
+ * @generated from field: repeated string rpcs = 4;
803
+ */
804
+ rpcs: string[];
805
+ /**
806
+ * @generated from field: string isolation = 5;
807
+ */
808
+ isolation: string;
809
+ /**
810
+ * @generated from field: bool slack_visible = 6;
811
+ */
812
+ slackVisible: boolean;
813
+ /**
814
+ * @generated from field: bool requires_lease = 7;
815
+ */
816
+ requiresLease: boolean;
817
+ /**
818
+ * @generated from field: bool proposal_only = 8;
819
+ */
820
+ proposalOnly: boolean;
821
+ /**
822
+ * @generated from field: bool evidence_backed = 9;
823
+ */
824
+ evidenceBacked: boolean;
825
+ };
826
+ /**
827
+ * Describes the message agentruntime.v1.TeammateCapability.
828
+ * Use `create(TeammateCapabilitySchema)` to create a new message.
829
+ */
830
+ export declare const TeammateCapabilitySchema: GenMessage<TeammateCapability>;
831
+ /**
832
+ * TeammateExecutionStep is the concise ownership path for capability use.
833
+ *
834
+ * @generated from message agentruntime.v1.TeammateExecutionStep
835
+ */
836
+ export type TeammateExecutionStep = Message<"agentruntime.v1.TeammateExecutionStep"> & {
837
+ /**
838
+ * @generated from field: string id = 1;
839
+ */
840
+ id: string;
841
+ /**
842
+ * @generated from field: string owner = 2;
843
+ */
844
+ owner: string;
845
+ /**
846
+ * @generated from field: repeated string reads = 3;
847
+ */
848
+ reads: string[];
849
+ /**
850
+ * @generated from field: repeated string writes = 4;
851
+ */
852
+ writes: string[];
853
+ /**
854
+ * @generated from field: repeated string rpcs = 5;
855
+ */
856
+ rpcs: string[];
857
+ /**
858
+ * @generated from field: string isolation = 6;
859
+ */
860
+ isolation: string;
861
+ /**
862
+ * @generated from field: string slack_behavior = 7;
863
+ */
864
+ slackBehavior: string;
865
+ };
866
+ /**
867
+ * Describes the message agentruntime.v1.TeammateExecutionStep.
868
+ * Use `create(TeammateExecutionStepSchema)` to create a new message.
869
+ */
870
+ export declare const TeammateExecutionStepSchema: GenMessage<TeammateExecutionStep>;
674
871
  /**
675
872
  * RuntimeVirtualFile is a read-only file projected into an agent run from
676
873
  * platform services. It lets workers consume rich context through a stable VFS