@llm-dev-ops/agentics-cli 1.3.16 → 1.4.0
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/dist/adapters/base-adapter.d.ts +36 -0
- package/dist/adapters/base-adapter.d.ts.map +1 -1
- package/dist/adapters/base-adapter.js +93 -7
- package/dist/adapters/base-adapter.js.map +1 -1
- package/dist/agents/cli-ux-agent.d.ts +153 -0
- package/dist/agents/cli-ux-agent.d.ts.map +1 -0
- package/dist/agents/cli-ux-agent.js +488 -0
- package/dist/agents/cli-ux-agent.js.map +1 -0
- package/dist/agents/decision-event.d.ts +177 -0
- package/dist/agents/decision-event.d.ts.map +1 -0
- package/dist/agents/decision-event.js +346 -0
- package/dist/agents/decision-event.js.map +1 -0
- package/dist/agents/index.d.ts +20 -0
- package/dist/agents/index.d.ts.map +1 -0
- package/dist/agents/index.js +23 -0
- package/dist/agents/index.js.map +1 -0
- package/dist/agents/types.d.ts +304 -0
- package/dist/agents/types.d.ts.map +1 -0
- package/dist/agents/types.js +74 -0
- package/dist/agents/types.js.map +1 -0
- package/dist/auth/gcp-identity.d.ts +61 -0
- package/dist/auth/gcp-identity.d.ts.map +1 -0
- package/dist/auth/gcp-identity.js +228 -0
- package/dist/auth/gcp-identity.js.map +1 -0
- package/dist/auth/index.d.ts +8 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/index.js +8 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/cli/index.js +74 -65
- package/dist/cli/index.js.map +1 -1
- package/dist/commands/policy.d.ts +0 -50
- package/dist/commands/policy.d.ts.map +1 -1
- package/dist/commands/policy.js +0 -266
- package/dist/commands/policy.js.map +1 -1
- package/dist/commands/whoami.d.ts +8 -0
- package/dist/commands/whoami.d.ts.map +1 -1
- package/dist/commands/whoami.js +54 -7
- package/dist/commands/whoami.js.map +1 -1
- package/dist/contracts/schemas/index.d.ts +505 -0
- package/dist/contracts/schemas/index.d.ts.map +1 -1
- package/dist/contracts/schemas/index.js +315 -0
- package/dist/contracts/schemas/index.js.map +1 -1
- package/dist/gates/execution-gate.d.ts +59 -0
- package/dist/gates/execution-gate.d.ts.map +1 -0
- package/dist/gates/execution-gate.js +115 -0
- package/dist/gates/execution-gate.js.map +1 -0
- package/dist/gates/index.d.ts +8 -0
- package/dist/gates/index.d.ts.map +1 -0
- package/dist/gates/index.js +8 -0
- package/dist/gates/index.js.map +1 -0
- package/package.json +2 -1
|
@@ -530,4 +530,509 @@ export interface ExecutionGraph {
|
|
|
530
530
|
nodes: unknown[];
|
|
531
531
|
edges: unknown[];
|
|
532
532
|
}
|
|
533
|
+
/**
|
|
534
|
+
* CLI UX Agent Input Schema
|
|
535
|
+
* Validates inputs to the CLI UX Agent.
|
|
536
|
+
*/
|
|
537
|
+
export declare const cliUxAgentInputSchema: {
|
|
538
|
+
type: string;
|
|
539
|
+
properties: {
|
|
540
|
+
args: {
|
|
541
|
+
type: string;
|
|
542
|
+
items: {
|
|
543
|
+
type: string;
|
|
544
|
+
};
|
|
545
|
+
description: string;
|
|
546
|
+
};
|
|
547
|
+
command: {
|
|
548
|
+
type: string;
|
|
549
|
+
properties: {
|
|
550
|
+
command: {
|
|
551
|
+
type: string;
|
|
552
|
+
};
|
|
553
|
+
subcommand: {
|
|
554
|
+
type: string;
|
|
555
|
+
};
|
|
556
|
+
flags: {
|
|
557
|
+
type: string;
|
|
558
|
+
additionalProperties: {
|
|
559
|
+
type: string;
|
|
560
|
+
};
|
|
561
|
+
};
|
|
562
|
+
options: {
|
|
563
|
+
type: string;
|
|
564
|
+
additionalProperties: {
|
|
565
|
+
type: string;
|
|
566
|
+
};
|
|
567
|
+
};
|
|
568
|
+
positionalArgs: {
|
|
569
|
+
type: string;
|
|
570
|
+
items: {
|
|
571
|
+
type: string;
|
|
572
|
+
};
|
|
573
|
+
};
|
|
574
|
+
};
|
|
575
|
+
required: string[];
|
|
576
|
+
};
|
|
577
|
+
context: {
|
|
578
|
+
type: string;
|
|
579
|
+
properties: {
|
|
580
|
+
cwd: {
|
|
581
|
+
type: string;
|
|
582
|
+
};
|
|
583
|
+
authenticated: {
|
|
584
|
+
type: string;
|
|
585
|
+
};
|
|
586
|
+
execution_gate_enabled: {
|
|
587
|
+
type: string;
|
|
588
|
+
};
|
|
589
|
+
output_format: {
|
|
590
|
+
type: string;
|
|
591
|
+
enum: string[];
|
|
592
|
+
};
|
|
593
|
+
verbose: {
|
|
594
|
+
type: string;
|
|
595
|
+
};
|
|
596
|
+
timeout: {
|
|
597
|
+
type: string;
|
|
598
|
+
};
|
|
599
|
+
};
|
|
600
|
+
required: string[];
|
|
601
|
+
};
|
|
602
|
+
trace_id: {
|
|
603
|
+
type: string;
|
|
604
|
+
};
|
|
605
|
+
};
|
|
606
|
+
required: string[];
|
|
607
|
+
additionalProperties: boolean;
|
|
608
|
+
};
|
|
609
|
+
/**
|
|
610
|
+
* CLI UX Agent Output Schema
|
|
611
|
+
* Validates outputs from the CLI UX Agent.
|
|
612
|
+
*/
|
|
613
|
+
export declare const cliUxAgentOutputSchema: {
|
|
614
|
+
type: string;
|
|
615
|
+
properties: {
|
|
616
|
+
success: {
|
|
617
|
+
type: string;
|
|
618
|
+
};
|
|
619
|
+
result: {
|
|
620
|
+
type: string;
|
|
621
|
+
oneOf: ({
|
|
622
|
+
properties: {
|
|
623
|
+
type: {
|
|
624
|
+
type: string;
|
|
625
|
+
const: string;
|
|
626
|
+
};
|
|
627
|
+
data: {};
|
|
628
|
+
artifact_ref: {
|
|
629
|
+
type: string;
|
|
630
|
+
};
|
|
631
|
+
services_invoked: {
|
|
632
|
+
type: string;
|
|
633
|
+
items: {
|
|
634
|
+
type: string;
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
code?: undefined;
|
|
638
|
+
message?: undefined;
|
|
639
|
+
details?: undefined;
|
|
640
|
+
recoverable?: undefined;
|
|
641
|
+
options?: undefined;
|
|
642
|
+
next_steps?: undefined;
|
|
643
|
+
};
|
|
644
|
+
required: string[];
|
|
645
|
+
} | {
|
|
646
|
+
properties: {
|
|
647
|
+
type: {
|
|
648
|
+
type: string;
|
|
649
|
+
const: string;
|
|
650
|
+
};
|
|
651
|
+
code: {
|
|
652
|
+
type: string;
|
|
653
|
+
};
|
|
654
|
+
message: {
|
|
655
|
+
type: string;
|
|
656
|
+
};
|
|
657
|
+
details: {
|
|
658
|
+
type: string;
|
|
659
|
+
};
|
|
660
|
+
recoverable: {
|
|
661
|
+
type: string;
|
|
662
|
+
};
|
|
663
|
+
data?: undefined;
|
|
664
|
+
artifact_ref?: undefined;
|
|
665
|
+
services_invoked?: undefined;
|
|
666
|
+
options?: undefined;
|
|
667
|
+
next_steps?: undefined;
|
|
668
|
+
};
|
|
669
|
+
required: string[];
|
|
670
|
+
} | {
|
|
671
|
+
properties: {
|
|
672
|
+
type: {
|
|
673
|
+
type: string;
|
|
674
|
+
const: string;
|
|
675
|
+
};
|
|
676
|
+
message: {
|
|
677
|
+
type: string;
|
|
678
|
+
};
|
|
679
|
+
options: {
|
|
680
|
+
type: string;
|
|
681
|
+
};
|
|
682
|
+
next_steps: {
|
|
683
|
+
type: string;
|
|
684
|
+
items: {
|
|
685
|
+
type: string;
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
data?: undefined;
|
|
689
|
+
artifact_ref?: undefined;
|
|
690
|
+
services_invoked?: undefined;
|
|
691
|
+
code?: undefined;
|
|
692
|
+
details?: undefined;
|
|
693
|
+
recoverable?: undefined;
|
|
694
|
+
};
|
|
695
|
+
required: string[];
|
|
696
|
+
})[];
|
|
697
|
+
};
|
|
698
|
+
decision_event: {
|
|
699
|
+
$ref: string;
|
|
700
|
+
};
|
|
701
|
+
timing: {
|
|
702
|
+
type: string;
|
|
703
|
+
properties: {
|
|
704
|
+
total_ms: {
|
|
705
|
+
type: string;
|
|
706
|
+
};
|
|
707
|
+
breakdown: {
|
|
708
|
+
type: string;
|
|
709
|
+
additionalProperties: {
|
|
710
|
+
type: string;
|
|
711
|
+
};
|
|
712
|
+
};
|
|
713
|
+
started_at: {
|
|
714
|
+
type: string;
|
|
715
|
+
format: string;
|
|
716
|
+
};
|
|
717
|
+
completed_at: {
|
|
718
|
+
type: string;
|
|
719
|
+
format: string;
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
required: string[];
|
|
723
|
+
};
|
|
724
|
+
};
|
|
725
|
+
required: string[];
|
|
726
|
+
additionalProperties: boolean;
|
|
727
|
+
$defs: {
|
|
728
|
+
DecisionEvent: {
|
|
729
|
+
type: string;
|
|
730
|
+
properties: {
|
|
731
|
+
agent_id: {
|
|
732
|
+
type: string;
|
|
733
|
+
};
|
|
734
|
+
agent_version: {
|
|
735
|
+
type: string;
|
|
736
|
+
};
|
|
737
|
+
decision_type: {
|
|
738
|
+
type: string;
|
|
739
|
+
enum: string[];
|
|
740
|
+
};
|
|
741
|
+
inputs_hash: {
|
|
742
|
+
type: string;
|
|
743
|
+
};
|
|
744
|
+
outputs: {
|
|
745
|
+
type: string;
|
|
746
|
+
properties: {
|
|
747
|
+
command: {
|
|
748
|
+
type: string;
|
|
749
|
+
};
|
|
750
|
+
subcommand: {
|
|
751
|
+
type: string;
|
|
752
|
+
};
|
|
753
|
+
result_type: {
|
|
754
|
+
type: string;
|
|
755
|
+
enum: string[];
|
|
756
|
+
};
|
|
757
|
+
artifact_ref: {
|
|
758
|
+
type: string;
|
|
759
|
+
};
|
|
760
|
+
services_invoked: {
|
|
761
|
+
type: string;
|
|
762
|
+
items: {
|
|
763
|
+
type: string;
|
|
764
|
+
};
|
|
765
|
+
};
|
|
766
|
+
};
|
|
767
|
+
required: string[];
|
|
768
|
+
};
|
|
769
|
+
confidence: {
|
|
770
|
+
type: string;
|
|
771
|
+
properties: {
|
|
772
|
+
value: {
|
|
773
|
+
type: string;
|
|
774
|
+
minimum: number;
|
|
775
|
+
maximum: number;
|
|
776
|
+
};
|
|
777
|
+
basis: {
|
|
778
|
+
type: string;
|
|
779
|
+
};
|
|
780
|
+
components: {
|
|
781
|
+
type: string;
|
|
782
|
+
};
|
|
783
|
+
};
|
|
784
|
+
required: string[];
|
|
785
|
+
};
|
|
786
|
+
constraints_applied: {
|
|
787
|
+
type: string;
|
|
788
|
+
properties: {
|
|
789
|
+
permissions: {
|
|
790
|
+
type: string;
|
|
791
|
+
items: {
|
|
792
|
+
type: string;
|
|
793
|
+
};
|
|
794
|
+
};
|
|
795
|
+
environment: {
|
|
796
|
+
type: string;
|
|
797
|
+
};
|
|
798
|
+
scope: {
|
|
799
|
+
type: string;
|
|
800
|
+
};
|
|
801
|
+
};
|
|
802
|
+
required: string[];
|
|
803
|
+
};
|
|
804
|
+
execution_ref: {
|
|
805
|
+
type: string[];
|
|
806
|
+
properties: {
|
|
807
|
+
service: {
|
|
808
|
+
type: string;
|
|
809
|
+
};
|
|
810
|
+
execution_id: {
|
|
811
|
+
type: string;
|
|
812
|
+
};
|
|
813
|
+
trace_id: {
|
|
814
|
+
type: string;
|
|
815
|
+
};
|
|
816
|
+
};
|
|
817
|
+
};
|
|
818
|
+
timestamp: {
|
|
819
|
+
type: string;
|
|
820
|
+
format: string;
|
|
821
|
+
};
|
|
822
|
+
trace_id: {
|
|
823
|
+
type: string;
|
|
824
|
+
};
|
|
825
|
+
};
|
|
826
|
+
required: string[];
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
/**
|
|
831
|
+
* DecisionEvent Schema (standalone)
|
|
832
|
+
* Used for validating DecisionEvents independently.
|
|
833
|
+
*/
|
|
834
|
+
export declare const decisionEventSchema: {
|
|
835
|
+
type: string;
|
|
836
|
+
properties: {
|
|
837
|
+
agent_id: {
|
|
838
|
+
type: string;
|
|
839
|
+
};
|
|
840
|
+
agent_version: {
|
|
841
|
+
type: string;
|
|
842
|
+
};
|
|
843
|
+
decision_type: {
|
|
844
|
+
type: string;
|
|
845
|
+
enum: string[];
|
|
846
|
+
};
|
|
847
|
+
inputs_hash: {
|
|
848
|
+
type: string;
|
|
849
|
+
};
|
|
850
|
+
outputs: {
|
|
851
|
+
type: string;
|
|
852
|
+
properties: {
|
|
853
|
+
command: {
|
|
854
|
+
type: string;
|
|
855
|
+
};
|
|
856
|
+
subcommand: {
|
|
857
|
+
type: string;
|
|
858
|
+
};
|
|
859
|
+
result_type: {
|
|
860
|
+
type: string;
|
|
861
|
+
enum: string[];
|
|
862
|
+
};
|
|
863
|
+
artifact_ref: {
|
|
864
|
+
type: string;
|
|
865
|
+
};
|
|
866
|
+
services_invoked: {
|
|
867
|
+
type: string;
|
|
868
|
+
items: {
|
|
869
|
+
type: string;
|
|
870
|
+
};
|
|
871
|
+
};
|
|
872
|
+
};
|
|
873
|
+
required: string[];
|
|
874
|
+
};
|
|
875
|
+
confidence: {
|
|
876
|
+
type: string;
|
|
877
|
+
properties: {
|
|
878
|
+
value: {
|
|
879
|
+
type: string;
|
|
880
|
+
minimum: number;
|
|
881
|
+
maximum: number;
|
|
882
|
+
};
|
|
883
|
+
basis: {
|
|
884
|
+
type: string;
|
|
885
|
+
};
|
|
886
|
+
components: {
|
|
887
|
+
type: string;
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
required: string[];
|
|
891
|
+
};
|
|
892
|
+
constraints_applied: {
|
|
893
|
+
type: string;
|
|
894
|
+
properties: {
|
|
895
|
+
permissions: {
|
|
896
|
+
type: string;
|
|
897
|
+
items: {
|
|
898
|
+
type: string;
|
|
899
|
+
};
|
|
900
|
+
};
|
|
901
|
+
environment: {
|
|
902
|
+
type: string;
|
|
903
|
+
properties: {
|
|
904
|
+
is_local: {
|
|
905
|
+
type: string;
|
|
906
|
+
};
|
|
907
|
+
is_production: {
|
|
908
|
+
type: string;
|
|
909
|
+
};
|
|
910
|
+
execution_gate_enabled: {
|
|
911
|
+
type: string;
|
|
912
|
+
};
|
|
913
|
+
auth_present: {
|
|
914
|
+
type: string;
|
|
915
|
+
};
|
|
916
|
+
};
|
|
917
|
+
required: string[];
|
|
918
|
+
};
|
|
919
|
+
scope: {
|
|
920
|
+
type: string;
|
|
921
|
+
};
|
|
922
|
+
};
|
|
923
|
+
required: string[];
|
|
924
|
+
};
|
|
925
|
+
execution_ref: {
|
|
926
|
+
oneOf: ({
|
|
927
|
+
type: string;
|
|
928
|
+
properties: {
|
|
929
|
+
service: {
|
|
930
|
+
type: string;
|
|
931
|
+
};
|
|
932
|
+
execution_id: {
|
|
933
|
+
type: string;
|
|
934
|
+
};
|
|
935
|
+
trace_id: {
|
|
936
|
+
type: string;
|
|
937
|
+
};
|
|
938
|
+
};
|
|
939
|
+
required: string[];
|
|
940
|
+
} | {
|
|
941
|
+
type: string;
|
|
942
|
+
properties?: undefined;
|
|
943
|
+
required?: undefined;
|
|
944
|
+
})[];
|
|
945
|
+
};
|
|
946
|
+
timestamp: {
|
|
947
|
+
type: string;
|
|
948
|
+
format: string;
|
|
949
|
+
};
|
|
950
|
+
trace_id: {
|
|
951
|
+
type: string;
|
|
952
|
+
};
|
|
953
|
+
};
|
|
954
|
+
required: string[];
|
|
955
|
+
additionalProperties: boolean;
|
|
956
|
+
};
|
|
957
|
+
/**
|
|
958
|
+
* Agent Registration Schema
|
|
959
|
+
* Validates agent registration metadata.
|
|
960
|
+
*/
|
|
961
|
+
export declare const agentRegistrationSchema: {
|
|
962
|
+
type: string;
|
|
963
|
+
properties: {
|
|
964
|
+
identifier: {
|
|
965
|
+
type: string;
|
|
966
|
+
properties: {
|
|
967
|
+
agent_id: {
|
|
968
|
+
type: string;
|
|
969
|
+
};
|
|
970
|
+
agent_version: {
|
|
971
|
+
type: string;
|
|
972
|
+
};
|
|
973
|
+
agent_name: {
|
|
974
|
+
type: string;
|
|
975
|
+
};
|
|
976
|
+
classification: {
|
|
977
|
+
type: string;
|
|
978
|
+
const: string;
|
|
979
|
+
};
|
|
980
|
+
};
|
|
981
|
+
required: string[];
|
|
982
|
+
};
|
|
983
|
+
purpose: {
|
|
984
|
+
type: string;
|
|
985
|
+
};
|
|
986
|
+
inputs_schema_ref: {
|
|
987
|
+
type: string;
|
|
988
|
+
};
|
|
989
|
+
outputs_schema_ref: {
|
|
990
|
+
type: string;
|
|
991
|
+
};
|
|
992
|
+
decision_event_schema_ref: {
|
|
993
|
+
type: string;
|
|
994
|
+
};
|
|
995
|
+
invocable_services: {
|
|
996
|
+
type: string;
|
|
997
|
+
items: {
|
|
998
|
+
type: string;
|
|
999
|
+
};
|
|
1000
|
+
};
|
|
1001
|
+
non_responsibilities: {
|
|
1002
|
+
type: string;
|
|
1003
|
+
items: {
|
|
1004
|
+
type: string;
|
|
1005
|
+
};
|
|
1006
|
+
};
|
|
1007
|
+
failure_modes: {
|
|
1008
|
+
type: string;
|
|
1009
|
+
items: {
|
|
1010
|
+
type: string;
|
|
1011
|
+
properties: {
|
|
1012
|
+
code: {
|
|
1013
|
+
type: string;
|
|
1014
|
+
};
|
|
1015
|
+
description: {
|
|
1016
|
+
type: string;
|
|
1017
|
+
};
|
|
1018
|
+
exit_code: {
|
|
1019
|
+
type: string;
|
|
1020
|
+
};
|
|
1021
|
+
recoverable: {
|
|
1022
|
+
type: string;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
required: string[];
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
};
|
|
1029
|
+
required: string[];
|
|
1030
|
+
additionalProperties: boolean;
|
|
1031
|
+
};
|
|
1032
|
+
export declare const AgentSchemas: Readonly<{
|
|
1033
|
+
CLI_UX_AGENT_INPUT: "cliUxAgentInput";
|
|
1034
|
+
CLI_UX_AGENT_OUTPUT: "cliUxAgentOutput";
|
|
1035
|
+
DECISION_EVENT: "decisionEvent";
|
|
1036
|
+
AGENT_REGISTRATION: "agentRegistration";
|
|
1037
|
+
}>;
|
|
533
1038
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contracts/schemas/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contracts/schemas/index.ts"],"names":[],"mappings":"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"}
|