archal 0.9.19 → 0.10.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/README.md +62 -154
- package/agents/openclaw/.archal.json +8 -0
- package/agents/openclaw/Dockerfile +97 -0
- package/agents/openclaw/README.md +113 -0
- package/agents/openclaw/drive.mjs +301 -0
- package/agents/openclaw/extract-openclaw-response-text.mjs +49 -0
- package/agents/openclaw/package.json +9 -0
- package/agents/openclaw/scenarios/acceptance/github-escalation-and-cleanup.md +43 -0
- package/agents/openclaw/scenarios/acceptance/jira-linear-release-triage.md +39 -0
- package/agents/openclaw/scenarios/acceptance/multi-clone-customer-risk-review.md +45 -0
- package/agents/openclaw/scenarios/acceptance/slack-incident-handoff.md +42 -0
- package/agents/openclaw/scenarios/acceptance/stripe-dunning-remediation.md +40 -0
- package/agents/openclaw/scenarios/close-stale-issues.md +35 -0
- package/agents/openclaw/scenarios/github-issue-triage-read-only.md +44 -0
- package/agents/openclaw/workspace/AGENTS.md +23 -0
- package/agents/openclaw/workspace/IDENTITY.md +8 -0
- package/agents/openclaw/workspace/SOUL.md +14 -0
- package/agents/openclaw/workspace/TOOLS.md +54 -0
- package/clone-assets/apify/tools.json +256 -22
- package/clone-assets/calcom/tools.json +2062 -0
- package/clone-assets/clickup/tools.json +3245 -0
- package/clone-assets/customerio/tools.json +2350 -0
- package/clone-assets/datadog/tools.json +734 -0
- package/clone-assets/github/tools.json +307 -27
- package/clone-assets/gitlab/tools.json +10688 -0
- package/clone-assets/google-workspace/tools.json +18 -6
- package/clone-assets/hubspot/tools.json +1604 -0
- package/clone-assets/jira/fidelity.json +1 -1
- package/clone-assets/jira/tools.json +266 -543
- package/clone-assets/linear/tools.json +278 -40
- package/clone-assets/ownerrez/tools.json +548 -0
- package/clone-assets/pricelabs/tools.json +343 -0
- package/clone-assets/sentry/tools.json +2821 -0
- package/clone-assets/slack/tools.json +1 -2
- package/clone-assets/stripe/tools.json +299 -46
- package/clone-assets/supabase/tools.json +437 -0
- package/clone-assets/unipile/tools.json +408 -0
- package/clone-assets/webflow/tools.json +2185 -0
- package/dist/autoloop-worker-types-CHaclqtD.d.cts +160 -0
- package/dist/cli.cjs +127896 -84811
- package/dist/{vitest/chunk-L36NXAU6.js → commands/autoloop-hosted-control-plane-client.cjs} +16344 -18845
- package/dist/commands/autoloop-hosted-control-plane-client.d.cts +133 -0
- package/dist/commands/autoloop-pr-verification.cjs +4312 -0
- package/dist/commands/autoloop-pr-verification.d.cts +19 -0
- package/dist/commands/autoloop-result-parser.cjs +27058 -0
- package/dist/commands/autoloop-result-parser.d.cts +196 -0
- package/dist/commands/autoloop-worker.cjs +38488 -0
- package/dist/commands/autoloop-worker.d.cts +102 -0
- package/dist/eval-shim.mjs +216 -0
- package/dist/index.cjs +15 -2
- package/dist/index.d.cts +3 -1
- package/dist/layer-1-ziaLpfLr.d.cts +62 -0
- package/dist/metafile-cjs.json +1 -0
- package/dist/reporter-entry.js +3 -0
- package/dist/sdk/index.cjs +51630 -0
- package/dist/sdk/index.d.cts +626 -0
- package/dist/vitest/chunk-2PDHTPZC.js +4867 -0
- package/dist/vitest/chunk-7L4BBB6M.js +2613 -0
- package/dist/vitest/index.cjs +6152 -75718
- package/dist/vitest/index.d.ts +22 -86
- package/dist/vitest/index.js +45 -414
- package/dist/vitest/runtime/hosted-session-reaper.cjs +682 -34399
- package/dist/vitest/runtime/hosted-session-reaper.js +1 -1
- package/dist/vitest/runtime/setup-files.js +2 -2
- package/manifest.json +9 -0
- package/package.json +20 -14
- package/skills/archal-agent/SKILL.md +86 -0
- package/skills/autoloop/SKILL.md +391 -0
- package/skills/autoloop/references/hosted-sources.md +94 -0
- package/skills/autoloop/references/trace-schema-mapping.md +104 -0
- package/skills/eval/SKILL.md +17 -15
- package/skills/free-account/SKILL.md +103 -0
- package/skills/install-agent/SKILL.md +202 -0
- package/skills/onboard/SKILL.md +29 -18
- package/skills/scenario/SKILL.md +36 -18
- package/skills/seed/SKILL.md +238 -0
- package/skills/vitest/SKILL.md +3 -2
- package/dist/harness.cjs +0 -62
- package/dist/harness.d.cts +0 -20
- package/dist/seed/dynamic-generator.cjs +0 -45687
- package/dist/seed/dynamic-generator.d.cts +0 -106
- package/dist/vitest/chunk-WZ7SA4CK.js +0 -47369
- package/skills/attach/SKILL.md +0 -402
|
@@ -1085,8 +1085,15 @@
|
|
|
1085
1085
|
"type": "object",
|
|
1086
1086
|
"properties": {
|
|
1087
1087
|
"project_key": {
|
|
1088
|
-
"
|
|
1089
|
-
|
|
1088
|
+
"anyOf": [
|
|
1089
|
+
{
|
|
1090
|
+
"type": "string",
|
|
1091
|
+
"minLength": 1
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"type": "number"
|
|
1095
|
+
}
|
|
1096
|
+
]
|
|
1090
1097
|
},
|
|
1091
1098
|
"name": {
|
|
1092
1099
|
"type": "string",
|
|
@@ -2662,553 +2669,42 @@
|
|
|
2662
2669
|
"field_configuration_scheme_id": {
|
|
2663
2670
|
"type": "string"
|
|
2664
2671
|
},
|
|
2665
|
-
"name": {
|
|
2666
|
-
"type": "string",
|
|
2667
|
-
"minLength": 1
|
|
2668
|
-
},
|
|
2669
|
-
"description": {
|
|
2670
|
-
"anyOf": [
|
|
2671
|
-
{
|
|
2672
|
-
"type": "string"
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
"type": "null"
|
|
2676
|
-
}
|
|
2677
|
-
]
|
|
2678
|
-
}
|
|
2679
|
-
},
|
|
2680
|
-
"required": [
|
|
2681
|
-
"field_configuration_scheme_id",
|
|
2682
|
-
"name"
|
|
2683
|
-
],
|
|
2684
|
-
"additionalProperties": false
|
|
2685
|
-
},
|
|
2686
|
-
"hidden": true
|
|
2687
|
-
},
|
|
2688
|
-
{
|
|
2689
|
-
"name": "jira_rest_delete_field_configuration_scheme",
|
|
2690
|
-
"description": "Delete a Jira field configuration scheme",
|
|
2691
|
-
"inputSchema": {
|
|
2692
|
-
"type": "object",
|
|
2693
|
-
"properties": {
|
|
2694
|
-
"field_configuration_scheme_id": {
|
|
2695
|
-
"type": "string"
|
|
2696
|
-
}
|
|
2697
|
-
},
|
|
2698
|
-
"required": [
|
|
2699
|
-
"field_configuration_scheme_id"
|
|
2700
|
-
],
|
|
2701
|
-
"additionalProperties": false
|
|
2702
|
-
},
|
|
2703
|
-
"hidden": true
|
|
2704
|
-
},
|
|
2705
|
-
{
|
|
2706
|
-
"name": "jira_rest_get_field_association_schemes",
|
|
2707
|
-
"description": "Get Jira field schemes",
|
|
2708
|
-
"inputSchema": {
|
|
2709
|
-
"type": "object",
|
|
2710
|
-
"properties": {
|
|
2711
|
-
"project_id": {
|
|
2712
|
-
"default": [],
|
|
2713
|
-
"type": "array",
|
|
2714
|
-
"items": {
|
|
2715
|
-
"type": "string"
|
|
2716
|
-
}
|
|
2717
|
-
},
|
|
2718
|
-
"query": {
|
|
2719
|
-
"type": "string"
|
|
2720
|
-
},
|
|
2721
|
-
"start_at": {
|
|
2722
|
-
"default": 0,
|
|
2723
|
-
"type": "integer",
|
|
2724
|
-
"minimum": -9007199254740991,
|
|
2725
|
-
"maximum": 9007199254740991
|
|
2726
|
-
},
|
|
2727
|
-
"max_results": {
|
|
2728
|
-
"default": 50,
|
|
2729
|
-
"type": "integer",
|
|
2730
|
-
"minimum": -9007199254740991,
|
|
2731
|
-
"maximum": 9007199254740991
|
|
2732
|
-
}
|
|
2733
|
-
},
|
|
2734
|
-
"additionalProperties": false
|
|
2735
|
-
},
|
|
2736
|
-
"hidden": true
|
|
2737
|
-
},
|
|
2738
|
-
{
|
|
2739
|
-
"name": "jira_rest_create_field_association_scheme",
|
|
2740
|
-
"description": "Create a Jira field scheme",
|
|
2741
|
-
"inputSchema": {
|
|
2742
|
-
"type": "object",
|
|
2743
|
-
"properties": {
|
|
2744
|
-
"name": {
|
|
2745
|
-
"type": "string",
|
|
2746
|
-
"minLength": 1
|
|
2747
|
-
},
|
|
2748
|
-
"description": {
|
|
2749
|
-
"anyOf": [
|
|
2750
|
-
{
|
|
2751
|
-
"type": "string"
|
|
2752
|
-
},
|
|
2753
|
-
{
|
|
2754
|
-
"type": "null"
|
|
2755
|
-
}
|
|
2756
|
-
]
|
|
2757
|
-
}
|
|
2758
|
-
},
|
|
2759
|
-
"required": [
|
|
2760
|
-
"name"
|
|
2761
|
-
],
|
|
2762
|
-
"additionalProperties": false
|
|
2763
|
-
},
|
|
2764
|
-
"hidden": true
|
|
2765
|
-
},
|
|
2766
|
-
{
|
|
2767
|
-
"name": "jira_rest_delete_field_association_scheme",
|
|
2768
|
-
"description": "Delete a Jira field scheme",
|
|
2769
|
-
"inputSchema": {
|
|
2770
|
-
"type": "object",
|
|
2771
|
-
"properties": {
|
|
2772
|
-
"scheme_id": {
|
|
2773
|
-
"type": "string"
|
|
2774
|
-
}
|
|
2775
|
-
},
|
|
2776
|
-
"required": [
|
|
2777
|
-
"scheme_id"
|
|
2778
|
-
],
|
|
2779
|
-
"additionalProperties": false
|
|
2780
|
-
},
|
|
2781
|
-
"hidden": true
|
|
2782
|
-
},
|
|
2783
|
-
{
|
|
2784
|
-
"name": "jira_rest_get_field_association_scheme",
|
|
2785
|
-
"description": "Get a Jira field scheme",
|
|
2786
|
-
"inputSchema": {
|
|
2787
|
-
"type": "object",
|
|
2788
|
-
"properties": {
|
|
2789
|
-
"scheme_id": {
|
|
2790
|
-
"type": "string"
|
|
2791
|
-
}
|
|
2792
|
-
},
|
|
2793
|
-
"required": [
|
|
2794
|
-
"scheme_id"
|
|
2795
|
-
],
|
|
2796
|
-
"additionalProperties": false
|
|
2797
|
-
},
|
|
2798
|
-
"hidden": true
|
|
2799
|
-
},
|
|
2800
|
-
{
|
|
2801
|
-
"name": "jira_rest_update_field_association_scheme",
|
|
2802
|
-
"description": "Update a Jira field scheme",
|
|
2803
|
-
"inputSchema": {
|
|
2804
|
-
"type": "object",
|
|
2805
|
-
"properties": {
|
|
2806
|
-
"scheme_id": {
|
|
2807
|
-
"type": "string"
|
|
2808
|
-
},
|
|
2809
|
-
"name": {
|
|
2810
|
-
"type": "string"
|
|
2811
|
-
},
|
|
2812
|
-
"description": {
|
|
2813
|
-
"anyOf": [
|
|
2814
|
-
{
|
|
2815
|
-
"type": "string"
|
|
2816
|
-
},
|
|
2817
|
-
{
|
|
2818
|
-
"type": "null"
|
|
2819
|
-
}
|
|
2820
|
-
]
|
|
2821
|
-
}
|
|
2822
|
-
},
|
|
2823
|
-
"required": [
|
|
2824
|
-
"scheme_id"
|
|
2825
|
-
],
|
|
2826
|
-
"additionalProperties": false
|
|
2827
|
-
},
|
|
2828
|
-
"hidden": true
|
|
2829
|
-
},
|
|
2830
|
-
{
|
|
2831
|
-
"name": "jira_rest_clone_field_association_scheme",
|
|
2832
|
-
"description": "Clone a Jira field scheme",
|
|
2833
|
-
"inputSchema": {
|
|
2834
|
-
"type": "object",
|
|
2835
|
-
"properties": {
|
|
2836
|
-
"scheme_id": {
|
|
2837
|
-
"type": "string"
|
|
2838
|
-
},
|
|
2839
|
-
"name": {
|
|
2840
|
-
"type": "string"
|
|
2841
|
-
},
|
|
2842
|
-
"description": {
|
|
2843
|
-
"anyOf": [
|
|
2844
|
-
{
|
|
2845
|
-
"type": "string"
|
|
2846
|
-
},
|
|
2847
|
-
{
|
|
2848
|
-
"type": "null"
|
|
2849
|
-
}
|
|
2850
|
-
]
|
|
2851
|
-
}
|
|
2852
|
-
},
|
|
2853
|
-
"required": [
|
|
2854
|
-
"scheme_id"
|
|
2855
|
-
],
|
|
2856
|
-
"additionalProperties": false
|
|
2857
|
-
},
|
|
2858
|
-
"hidden": true
|
|
2859
|
-
},
|
|
2860
|
-
{
|
|
2861
|
-
"name": "jira_rest_get_field_association_scheme_fields",
|
|
2862
|
-
"description": "Search fields in a Jira field scheme",
|
|
2863
|
-
"inputSchema": {
|
|
2864
|
-
"type": "object",
|
|
2865
|
-
"properties": {
|
|
2866
|
-
"scheme_id": {
|
|
2867
|
-
"type": "string"
|
|
2868
|
-
},
|
|
2869
|
-
"field_id": {
|
|
2870
|
-
"default": [],
|
|
2871
|
-
"type": "array",
|
|
2872
|
-
"items": {
|
|
2873
|
-
"type": "string"
|
|
2874
|
-
}
|
|
2875
|
-
},
|
|
2876
|
-
"start_at": {
|
|
2877
|
-
"default": 0,
|
|
2878
|
-
"type": "integer",
|
|
2879
|
-
"minimum": -9007199254740991,
|
|
2880
|
-
"maximum": 9007199254740991
|
|
2881
|
-
},
|
|
2882
|
-
"max_results": {
|
|
2883
|
-
"default": 50,
|
|
2884
|
-
"type": "integer",
|
|
2885
|
-
"minimum": -9007199254740991,
|
|
2886
|
-
"maximum": 9007199254740991
|
|
2887
|
-
}
|
|
2888
|
-
},
|
|
2889
|
-
"required": [
|
|
2890
|
-
"scheme_id"
|
|
2891
|
-
],
|
|
2892
|
-
"additionalProperties": false
|
|
2893
|
-
},
|
|
2894
|
-
"hidden": true
|
|
2895
|
-
},
|
|
2896
|
-
{
|
|
2897
|
-
"name": "jira_rest_get_field_association_scheme_field_parameters",
|
|
2898
|
-
"description": "Get parameters for a field in a Jira field scheme",
|
|
2899
|
-
"inputSchema": {
|
|
2900
|
-
"type": "object",
|
|
2901
|
-
"properties": {
|
|
2902
|
-
"scheme_id": {
|
|
2903
|
-
"type": "string"
|
|
2904
|
-
},
|
|
2905
|
-
"field_id": {
|
|
2906
|
-
"type": "string"
|
|
2907
|
-
}
|
|
2908
|
-
},
|
|
2909
|
-
"required": [
|
|
2910
|
-
"scheme_id",
|
|
2911
|
-
"field_id"
|
|
2912
|
-
],
|
|
2913
|
-
"additionalProperties": false
|
|
2914
|
-
},
|
|
2915
|
-
"hidden": true
|
|
2916
|
-
},
|
|
2917
|
-
{
|
|
2918
|
-
"name": "jira_rest_get_field_association_scheme_projects",
|
|
2919
|
-
"description": "Search projects associated with a Jira field scheme",
|
|
2920
|
-
"inputSchema": {
|
|
2921
|
-
"type": "object",
|
|
2922
|
-
"properties": {
|
|
2923
|
-
"scheme_id": {
|
|
2924
|
-
"type": "string"
|
|
2925
|
-
},
|
|
2926
|
-
"project_id": {
|
|
2927
|
-
"default": [],
|
|
2928
|
-
"type": "array",
|
|
2929
|
-
"items": {
|
|
2930
|
-
"type": "string"
|
|
2931
|
-
}
|
|
2932
|
-
},
|
|
2933
|
-
"start_at": {
|
|
2934
|
-
"default": 0,
|
|
2935
|
-
"type": "integer",
|
|
2936
|
-
"minimum": -9007199254740991,
|
|
2937
|
-
"maximum": 9007199254740991
|
|
2938
|
-
},
|
|
2939
|
-
"max_results": {
|
|
2940
|
-
"default": 50,
|
|
2941
|
-
"type": "integer",
|
|
2942
|
-
"minimum": -9007199254740991,
|
|
2943
|
-
"maximum": 9007199254740991
|
|
2944
|
-
}
|
|
2945
|
-
},
|
|
2946
|
-
"required": [
|
|
2947
|
-
"scheme_id"
|
|
2948
|
-
],
|
|
2949
|
-
"additionalProperties": false
|
|
2950
|
-
},
|
|
2951
|
-
"hidden": true
|
|
2952
|
-
},
|
|
2953
|
-
{
|
|
2954
|
-
"name": "jira_rest_remove_fields_associated_with_schemes",
|
|
2955
|
-
"description": "Remove fields associated with Jira field schemes",
|
|
2956
|
-
"inputSchema": {
|
|
2957
|
-
"type": "object",
|
|
2958
|
-
"properties": {
|
|
2959
|
-
"associations": {
|
|
2960
|
-
"default": [],
|
|
2961
|
-
"type": "array",
|
|
2962
|
-
"items": {
|
|
2963
|
-
"type": "object",
|
|
2964
|
-
"properties": {
|
|
2965
|
-
"field_id": {
|
|
2966
|
-
"type": "string"
|
|
2967
|
-
},
|
|
2968
|
-
"scheme_ids": {
|
|
2969
|
-
"default": [],
|
|
2970
|
-
"type": "array",
|
|
2971
|
-
"items": {
|
|
2972
|
-
"type": "string"
|
|
2973
|
-
}
|
|
2974
|
-
}
|
|
2975
|
-
},
|
|
2976
|
-
"required": [
|
|
2977
|
-
"field_id",
|
|
2978
|
-
"scheme_ids"
|
|
2979
|
-
],
|
|
2980
|
-
"additionalProperties": false
|
|
2981
|
-
}
|
|
2982
|
-
}
|
|
2983
|
-
},
|
|
2984
|
-
"additionalProperties": false
|
|
2985
|
-
},
|
|
2986
|
-
"hidden": true
|
|
2987
|
-
},
|
|
2988
|
-
{
|
|
2989
|
-
"name": "jira_rest_update_fields_associated_with_schemes",
|
|
2990
|
-
"description": "Update fields associated with Jira field schemes",
|
|
2991
|
-
"inputSchema": {
|
|
2992
|
-
"type": "object",
|
|
2993
|
-
"properties": {
|
|
2994
|
-
"associations": {
|
|
2995
|
-
"default": [],
|
|
2996
|
-
"type": "array",
|
|
2997
|
-
"items": {
|
|
2998
|
-
"type": "object",
|
|
2999
|
-
"properties": {
|
|
3000
|
-
"field_id": {
|
|
3001
|
-
"type": "string"
|
|
3002
|
-
},
|
|
3003
|
-
"scheme_ids": {
|
|
3004
|
-
"default": [],
|
|
3005
|
-
"type": "array",
|
|
3006
|
-
"items": {
|
|
3007
|
-
"type": "string"
|
|
3008
|
-
}
|
|
3009
|
-
},
|
|
3010
|
-
"restricted_to_work_types": {
|
|
3011
|
-
"default": [],
|
|
3012
|
-
"type": "array",
|
|
3013
|
-
"items": {
|
|
3014
|
-
"type": "string"
|
|
3015
|
-
}
|
|
3016
|
-
}
|
|
3017
|
-
},
|
|
3018
|
-
"required": [
|
|
3019
|
-
"field_id",
|
|
3020
|
-
"scheme_ids",
|
|
3021
|
-
"restricted_to_work_types"
|
|
3022
|
-
],
|
|
3023
|
-
"additionalProperties": false
|
|
3024
|
-
}
|
|
3025
|
-
}
|
|
3026
|
-
},
|
|
3027
|
-
"additionalProperties": false
|
|
3028
|
-
},
|
|
3029
|
-
"hidden": true
|
|
3030
|
-
},
|
|
3031
|
-
{
|
|
3032
|
-
"name": "jira_rest_remove_field_association_scheme_item_parameters",
|
|
3033
|
-
"description": "Remove Jira field scheme field parameters",
|
|
3034
|
-
"inputSchema": {
|
|
3035
|
-
"type": "object",
|
|
3036
|
-
"properties": {
|
|
3037
|
-
"removals": {
|
|
3038
|
-
"default": [],
|
|
3039
|
-
"type": "array",
|
|
3040
|
-
"items": {
|
|
3041
|
-
"type": "object",
|
|
3042
|
-
"properties": {
|
|
3043
|
-
"field_id": {
|
|
3044
|
-
"type": "string"
|
|
3045
|
-
},
|
|
3046
|
-
"scheme_id": {
|
|
3047
|
-
"type": "string"
|
|
3048
|
-
},
|
|
3049
|
-
"parameters": {
|
|
3050
|
-
"default": [],
|
|
3051
|
-
"type": "array",
|
|
3052
|
-
"items": {
|
|
3053
|
-
"type": "string"
|
|
3054
|
-
}
|
|
3055
|
-
},
|
|
3056
|
-
"work_type_ids": {
|
|
3057
|
-
"default": [],
|
|
3058
|
-
"type": "array",
|
|
3059
|
-
"items": {
|
|
3060
|
-
"type": "string"
|
|
3061
|
-
}
|
|
3062
|
-
}
|
|
3063
|
-
},
|
|
3064
|
-
"required": [
|
|
3065
|
-
"field_id",
|
|
3066
|
-
"scheme_id",
|
|
3067
|
-
"parameters",
|
|
3068
|
-
"work_type_ids"
|
|
3069
|
-
],
|
|
3070
|
-
"additionalProperties": false
|
|
3071
|
-
}
|
|
3072
|
-
}
|
|
3073
|
-
},
|
|
3074
|
-
"additionalProperties": false
|
|
3075
|
-
},
|
|
3076
|
-
"hidden": true
|
|
3077
|
-
},
|
|
3078
|
-
{
|
|
3079
|
-
"name": "jira_rest_update_field_association_scheme_item_parameters",
|
|
3080
|
-
"description": "Update Jira field scheme field parameters",
|
|
3081
|
-
"inputSchema": {
|
|
3082
|
-
"type": "object",
|
|
3083
|
-
"properties": {
|
|
3084
|
-
"updates": {
|
|
3085
|
-
"default": [],
|
|
3086
|
-
"type": "array",
|
|
3087
|
-
"items": {
|
|
3088
|
-
"type": "object",
|
|
3089
|
-
"properties": {
|
|
3090
|
-
"field_id": {
|
|
3091
|
-
"type": "string"
|
|
3092
|
-
},
|
|
3093
|
-
"scheme_ids": {
|
|
3094
|
-
"default": [],
|
|
3095
|
-
"type": "array",
|
|
3096
|
-
"items": {
|
|
3097
|
-
"type": "string"
|
|
3098
|
-
}
|
|
3099
|
-
},
|
|
3100
|
-
"parameters": {
|
|
3101
|
-
"type": "object",
|
|
3102
|
-
"properties": {
|
|
3103
|
-
"description": {
|
|
3104
|
-
"type": "string"
|
|
3105
|
-
},
|
|
3106
|
-
"isRequired": {
|
|
3107
|
-
"type": "boolean"
|
|
3108
|
-
}
|
|
3109
|
-
},
|
|
3110
|
-
"additionalProperties": false
|
|
3111
|
-
},
|
|
3112
|
-
"work_type_parameters": {
|
|
3113
|
-
"default": [],
|
|
3114
|
-
"type": "array",
|
|
3115
|
-
"items": {
|
|
3116
|
-
"type": "object",
|
|
3117
|
-
"properties": {
|
|
3118
|
-
"work_type_id": {
|
|
3119
|
-
"type": "string"
|
|
3120
|
-
},
|
|
3121
|
-
"description": {
|
|
3122
|
-
"type": "string"
|
|
3123
|
-
},
|
|
3124
|
-
"isRequired": {
|
|
3125
|
-
"type": "boolean"
|
|
3126
|
-
}
|
|
3127
|
-
},
|
|
3128
|
-
"required": [
|
|
3129
|
-
"work_type_id"
|
|
3130
|
-
],
|
|
3131
|
-
"additionalProperties": false
|
|
3132
|
-
}
|
|
3133
|
-
}
|
|
3134
|
-
},
|
|
3135
|
-
"required": [
|
|
3136
|
-
"field_id",
|
|
3137
|
-
"scheme_ids",
|
|
3138
|
-
"work_type_parameters"
|
|
3139
|
-
],
|
|
3140
|
-
"additionalProperties": false
|
|
3141
|
-
}
|
|
3142
|
-
}
|
|
3143
|
-
},
|
|
3144
|
-
"additionalProperties": false
|
|
3145
|
-
},
|
|
3146
|
-
"hidden": true
|
|
3147
|
-
},
|
|
3148
|
-
{
|
|
3149
|
-
"name": "jira_rest_get_projects_with_field_schemes",
|
|
3150
|
-
"description": "Get projects and their Jira field schemes",
|
|
3151
|
-
"inputSchema": {
|
|
3152
|
-
"type": "object",
|
|
3153
|
-
"properties": {
|
|
3154
|
-
"project_id": {
|
|
3155
|
-
"minItems": 1,
|
|
3156
|
-
"type": "array",
|
|
3157
|
-
"items": {
|
|
3158
|
-
"type": "string"
|
|
3159
|
-
}
|
|
3160
|
-
},
|
|
3161
|
-
"start_at": {
|
|
3162
|
-
"default": 0,
|
|
3163
|
-
"type": "integer",
|
|
3164
|
-
"minimum": -9007199254740991,
|
|
3165
|
-
"maximum": 9007199254740991
|
|
2672
|
+
"name": {
|
|
2673
|
+
"type": "string",
|
|
2674
|
+
"minLength": 1
|
|
3166
2675
|
},
|
|
3167
|
-
"
|
|
3168
|
-
"
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
2676
|
+
"description": {
|
|
2677
|
+
"anyOf": [
|
|
2678
|
+
{
|
|
2679
|
+
"type": "string"
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"type": "null"
|
|
2683
|
+
}
|
|
2684
|
+
]
|
|
3172
2685
|
}
|
|
3173
2686
|
},
|
|
3174
2687
|
"required": [
|
|
3175
|
-
"
|
|
2688
|
+
"field_configuration_scheme_id",
|
|
2689
|
+
"name"
|
|
3176
2690
|
],
|
|
3177
2691
|
"additionalProperties": false
|
|
3178
2692
|
},
|
|
3179
2693
|
"hidden": true
|
|
3180
2694
|
},
|
|
3181
2695
|
{
|
|
3182
|
-
"name": "
|
|
3183
|
-
"description": "
|
|
2696
|
+
"name": "jira_rest_delete_field_configuration_scheme",
|
|
2697
|
+
"description": "Delete a Jira field configuration scheme",
|
|
3184
2698
|
"inputSchema": {
|
|
3185
2699
|
"type": "object",
|
|
3186
2700
|
"properties": {
|
|
3187
|
-
"
|
|
3188
|
-
"
|
|
3189
|
-
"type": "array",
|
|
3190
|
-
"items": {
|
|
3191
|
-
"type": "object",
|
|
3192
|
-
"properties": {
|
|
3193
|
-
"scheme_id": {
|
|
3194
|
-
"type": "string"
|
|
3195
|
-
},
|
|
3196
|
-
"project_ids": {
|
|
3197
|
-
"default": [],
|
|
3198
|
-
"type": "array",
|
|
3199
|
-
"items": {
|
|
3200
|
-
"type": "string"
|
|
3201
|
-
}
|
|
3202
|
-
}
|
|
3203
|
-
},
|
|
3204
|
-
"required": [
|
|
3205
|
-
"scheme_id",
|
|
3206
|
-
"project_ids"
|
|
3207
|
-
],
|
|
3208
|
-
"additionalProperties": false
|
|
3209
|
-
}
|
|
2701
|
+
"field_configuration_scheme_id": {
|
|
2702
|
+
"type": "string"
|
|
3210
2703
|
}
|
|
3211
2704
|
},
|
|
2705
|
+
"required": [
|
|
2706
|
+
"field_configuration_scheme_id"
|
|
2707
|
+
],
|
|
3212
2708
|
"additionalProperties": false
|
|
3213
2709
|
},
|
|
3214
2710
|
"hidden": true
|
|
@@ -4184,6 +3680,12 @@
|
|
|
4184
3680
|
"properties": {
|
|
4185
3681
|
"dashboard_id": {
|
|
4186
3682
|
"type": "string"
|
|
3683
|
+
},
|
|
3684
|
+
"item_id": {
|
|
3685
|
+
"type": "string"
|
|
3686
|
+
},
|
|
3687
|
+
"property_key": {
|
|
3688
|
+
"type": "string"
|
|
4187
3689
|
}
|
|
4188
3690
|
},
|
|
4189
3691
|
"required": [
|
|
@@ -4249,6 +3751,16 @@
|
|
|
4249
3751
|
},
|
|
4250
3752
|
"is_shared": {
|
|
4251
3753
|
"type": "boolean"
|
|
3754
|
+
},
|
|
3755
|
+
"item_id": {
|
|
3756
|
+
"type": "string"
|
|
3757
|
+
},
|
|
3758
|
+
"property_key": {
|
|
3759
|
+
"type": "string"
|
|
3760
|
+
},
|
|
3761
|
+
"property_value": {},
|
|
3762
|
+
"delete_property": {
|
|
3763
|
+
"type": "boolean"
|
|
4252
3764
|
}
|
|
4253
3765
|
},
|
|
4254
3766
|
"required": [
|
|
@@ -4478,6 +3990,181 @@
|
|
|
4478
3990
|
},
|
|
4479
3991
|
"hidden": true
|
|
4480
3992
|
},
|
|
3993
|
+
{
|
|
3994
|
+
"name": "jira_search_filters",
|
|
3995
|
+
"description": "Search saved Jira filters",
|
|
3996
|
+
"inputSchema": {
|
|
3997
|
+
"type": "object",
|
|
3998
|
+
"properties": {
|
|
3999
|
+
"filter_name": {
|
|
4000
|
+
"type": "string"
|
|
4001
|
+
},
|
|
4002
|
+
"start_at": {
|
|
4003
|
+
"default": 0,
|
|
4004
|
+
"type": "integer",
|
|
4005
|
+
"minimum": -9007199254740991,
|
|
4006
|
+
"maximum": 9007199254740991
|
|
4007
|
+
},
|
|
4008
|
+
"max_results": {
|
|
4009
|
+
"default": 50,
|
|
4010
|
+
"type": "integer",
|
|
4011
|
+
"minimum": -9007199254740991,
|
|
4012
|
+
"maximum": 9007199254740991
|
|
4013
|
+
}
|
|
4014
|
+
},
|
|
4015
|
+
"additionalProperties": false
|
|
4016
|
+
},
|
|
4017
|
+
"hidden": true
|
|
4018
|
+
},
|
|
4019
|
+
{
|
|
4020
|
+
"name": "jira_get_filter_permissions",
|
|
4021
|
+
"description": "List saved filter share permissions",
|
|
4022
|
+
"inputSchema": {
|
|
4023
|
+
"type": "object",
|
|
4024
|
+
"properties": {
|
|
4025
|
+
"filter_id": {
|
|
4026
|
+
"type": "string"
|
|
4027
|
+
}
|
|
4028
|
+
},
|
|
4029
|
+
"required": [
|
|
4030
|
+
"filter_id"
|
|
4031
|
+
],
|
|
4032
|
+
"additionalProperties": false
|
|
4033
|
+
},
|
|
4034
|
+
"hidden": true
|
|
4035
|
+
},
|
|
4036
|
+
{
|
|
4037
|
+
"name": "jira_add_filter_permission",
|
|
4038
|
+
"description": "Add a saved filter share permission",
|
|
4039
|
+
"inputSchema": {
|
|
4040
|
+
"type": "object",
|
|
4041
|
+
"properties": {
|
|
4042
|
+
"filter_id": {
|
|
4043
|
+
"type": "string"
|
|
4044
|
+
},
|
|
4045
|
+
"type": {
|
|
4046
|
+
"type": "string"
|
|
4047
|
+
},
|
|
4048
|
+
"group": {
|
|
4049
|
+
"type": "string"
|
|
4050
|
+
},
|
|
4051
|
+
"groupname": {
|
|
4052
|
+
"type": "string"
|
|
4053
|
+
},
|
|
4054
|
+
"project": {
|
|
4055
|
+
"type": "object",
|
|
4056
|
+
"properties": {
|
|
4057
|
+
"id": {
|
|
4058
|
+
"type": "string"
|
|
4059
|
+
}
|
|
4060
|
+
},
|
|
4061
|
+
"required": [
|
|
4062
|
+
"id"
|
|
4063
|
+
],
|
|
4064
|
+
"additionalProperties": false
|
|
4065
|
+
}
|
|
4066
|
+
},
|
|
4067
|
+
"required": [
|
|
4068
|
+
"filter_id",
|
|
4069
|
+
"type"
|
|
4070
|
+
],
|
|
4071
|
+
"additionalProperties": false
|
|
4072
|
+
},
|
|
4073
|
+
"hidden": true
|
|
4074
|
+
},
|
|
4075
|
+
{
|
|
4076
|
+
"name": "jira_get_filter_permission",
|
|
4077
|
+
"description": "Get a saved filter share permission",
|
|
4078
|
+
"inputSchema": {
|
|
4079
|
+
"type": "object",
|
|
4080
|
+
"properties": {
|
|
4081
|
+
"filter_id": {
|
|
4082
|
+
"type": "string"
|
|
4083
|
+
},
|
|
4084
|
+
"permission_id": {
|
|
4085
|
+
"type": "string"
|
|
4086
|
+
}
|
|
4087
|
+
},
|
|
4088
|
+
"required": [
|
|
4089
|
+
"filter_id",
|
|
4090
|
+
"permission_id"
|
|
4091
|
+
],
|
|
4092
|
+
"additionalProperties": false
|
|
4093
|
+
},
|
|
4094
|
+
"hidden": true
|
|
4095
|
+
},
|
|
4096
|
+
{
|
|
4097
|
+
"name": "jira_delete_filter_permission",
|
|
4098
|
+
"description": "Delete a saved filter share permission",
|
|
4099
|
+
"inputSchema": {
|
|
4100
|
+
"type": "object",
|
|
4101
|
+
"properties": {
|
|
4102
|
+
"filter_id": {
|
|
4103
|
+
"type": "string"
|
|
4104
|
+
},
|
|
4105
|
+
"permission_id": {
|
|
4106
|
+
"type": "string"
|
|
4107
|
+
}
|
|
4108
|
+
},
|
|
4109
|
+
"required": [
|
|
4110
|
+
"filter_id",
|
|
4111
|
+
"permission_id"
|
|
4112
|
+
],
|
|
4113
|
+
"additionalProperties": false
|
|
4114
|
+
},
|
|
4115
|
+
"hidden": true
|
|
4116
|
+
},
|
|
4117
|
+
{
|
|
4118
|
+
"name": "jira_get_filter_columns",
|
|
4119
|
+
"description": "Get saved filter columns",
|
|
4120
|
+
"inputSchema": {
|
|
4121
|
+
"type": "object",
|
|
4122
|
+
"properties": {
|
|
4123
|
+
"filter_id": {
|
|
4124
|
+
"type": "string"
|
|
4125
|
+
}
|
|
4126
|
+
},
|
|
4127
|
+
"required": [
|
|
4128
|
+
"filter_id"
|
|
4129
|
+
],
|
|
4130
|
+
"additionalProperties": false
|
|
4131
|
+
},
|
|
4132
|
+
"hidden": true
|
|
4133
|
+
},
|
|
4134
|
+
{
|
|
4135
|
+
"name": "jira_set_filter_columns",
|
|
4136
|
+
"description": "Set saved filter columns",
|
|
4137
|
+
"inputSchema": {
|
|
4138
|
+
"type": "object",
|
|
4139
|
+
"properties": {
|
|
4140
|
+
"filter_id": {
|
|
4141
|
+
"type": "string"
|
|
4142
|
+
}
|
|
4143
|
+
},
|
|
4144
|
+
"required": [
|
|
4145
|
+
"filter_id"
|
|
4146
|
+
],
|
|
4147
|
+
"additionalProperties": false
|
|
4148
|
+
},
|
|
4149
|
+
"hidden": true
|
|
4150
|
+
},
|
|
4151
|
+
{
|
|
4152
|
+
"name": "jira_delete_filter_columns",
|
|
4153
|
+
"description": "Delete saved filter columns",
|
|
4154
|
+
"inputSchema": {
|
|
4155
|
+
"type": "object",
|
|
4156
|
+
"properties": {
|
|
4157
|
+
"filter_id": {
|
|
4158
|
+
"type": "string"
|
|
4159
|
+
}
|
|
4160
|
+
},
|
|
4161
|
+
"required": [
|
|
4162
|
+
"filter_id"
|
|
4163
|
+
],
|
|
4164
|
+
"additionalProperties": false
|
|
4165
|
+
},
|
|
4166
|
+
"hidden": true
|
|
4167
|
+
},
|
|
4481
4168
|
{
|
|
4482
4169
|
"name": "jira_search_by_filter",
|
|
4483
4170
|
"description": "Execute a saved filter's JQL query",
|
|
@@ -5771,9 +5458,7 @@
|
|
|
5771
5458
|
"type": "object",
|
|
5772
5459
|
"properties": {
|
|
5773
5460
|
"name": {
|
|
5774
|
-
"type": "string"
|
|
5775
|
-
"minLength": 1,
|
|
5776
|
-
"maxLength": 255
|
|
5461
|
+
"type": "string"
|
|
5777
5462
|
},
|
|
5778
5463
|
"description": {
|
|
5779
5464
|
"type": "string"
|
|
@@ -5796,9 +5481,7 @@
|
|
|
5796
5481
|
"type": "string"
|
|
5797
5482
|
},
|
|
5798
5483
|
"name": {
|
|
5799
|
-
"type": "string"
|
|
5800
|
-
"minLength": 1,
|
|
5801
|
-
"maxLength": 255
|
|
5484
|
+
"type": "string"
|
|
5802
5485
|
},
|
|
5803
5486
|
"description": {
|
|
5804
5487
|
"type": "string"
|
|
@@ -8977,6 +8660,9 @@
|
|
|
8977
8660
|
"inputSchema": {
|
|
8978
8661
|
"type": "object",
|
|
8979
8662
|
"properties": {
|
|
8663
|
+
"permissions": {
|
|
8664
|
+
"type": "string"
|
|
8665
|
+
},
|
|
8980
8666
|
"project_key": {
|
|
8981
8667
|
"type": "string"
|
|
8982
8668
|
},
|
|
@@ -9573,7 +9259,14 @@
|
|
|
9573
9259
|
"type": "object",
|
|
9574
9260
|
"properties": {
|
|
9575
9261
|
"project_key": {
|
|
9576
|
-
"
|
|
9262
|
+
"anyOf": [
|
|
9263
|
+
{
|
|
9264
|
+
"type": "string"
|
|
9265
|
+
},
|
|
9266
|
+
{
|
|
9267
|
+
"type": "number"
|
|
9268
|
+
}
|
|
9269
|
+
]
|
|
9577
9270
|
},
|
|
9578
9271
|
"name": {
|
|
9579
9272
|
"type": "string",
|
|
@@ -10300,11 +9993,12 @@
|
|
|
10300
9993
|
"type": "string"
|
|
10301
9994
|
},
|
|
10302
9995
|
"iconUrl": {
|
|
10303
|
-
"
|
|
9996
|
+
"type": "string"
|
|
9997
|
+
},
|
|
9998
|
+
"avatarId": {
|
|
10304
9999
|
"type": "string"
|
|
10305
10000
|
},
|
|
10306
10001
|
"statusColor": {
|
|
10307
|
-
"default": "#009900",
|
|
10308
10002
|
"type": "string"
|
|
10309
10003
|
}
|
|
10310
10004
|
},
|
|
@@ -10332,6 +10026,15 @@
|
|
|
10332
10026
|
},
|
|
10333
10027
|
"iconUrl": {
|
|
10334
10028
|
"type": "string"
|
|
10029
|
+
},
|
|
10030
|
+
"avatarId": {
|
|
10031
|
+
"type": "string"
|
|
10032
|
+
},
|
|
10033
|
+
"statusColor": {
|
|
10034
|
+
"type": "string"
|
|
10035
|
+
},
|
|
10036
|
+
"ifMatch": {
|
|
10037
|
+
"type": "string"
|
|
10335
10038
|
}
|
|
10336
10039
|
},
|
|
10337
10040
|
"required": [
|
|
@@ -11099,6 +10802,9 @@
|
|
|
11099
10802
|
"inputSchema": {
|
|
11100
10803
|
"type": "object",
|
|
11101
10804
|
"properties": {
|
|
10805
|
+
"accountId": {
|
|
10806
|
+
"type": "string"
|
|
10807
|
+
},
|
|
11102
10808
|
"projectPermissions": {
|
|
11103
10809
|
"type": "array",
|
|
11104
10810
|
"items": {
|
|
@@ -12090,6 +11796,23 @@
|
|
|
12090
11796
|
},
|
|
12091
11797
|
"hidden": true
|
|
12092
11798
|
},
|
|
11799
|
+
{
|
|
11800
|
+
"name": "jira_get_issue_link_type",
|
|
11801
|
+
"description": "Get a Jira issue link type by id",
|
|
11802
|
+
"inputSchema": {
|
|
11803
|
+
"type": "object",
|
|
11804
|
+
"properties": {
|
|
11805
|
+
"link_type_id": {
|
|
11806
|
+
"type": "string"
|
|
11807
|
+
}
|
|
11808
|
+
},
|
|
11809
|
+
"required": [
|
|
11810
|
+
"link_type_id"
|
|
11811
|
+
],
|
|
11812
|
+
"additionalProperties": false
|
|
11813
|
+
},
|
|
11814
|
+
"hidden": true
|
|
11815
|
+
},
|
|
12093
11816
|
{
|
|
12094
11817
|
"name": "jira_create_issue_link_type",
|
|
12095
11818
|
"description": "Create a Jira issue link type",
|