@nuvlore/extension-bds 0.1.1
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/LICENSE +202 -0
- package/README.md +3 -0
- package/agents/bds-airflow-job-status-readonly.yaml +123 -0
- package/agents/bds-disk-investigator.yaml +112 -0
- package/agents/bds-inventory-readonly.yaml +60 -0
- package/agents/bds-oncall-reporter.yaml +113 -0
- package/agents/bds-prism-service-proxy-timeout-readonly.yaml +105 -0
- package/agents/bds-scylla-tenant-bucket-readonly.yaml +104 -0
- package/agents/bds-tenant-data-operation-log-readonly.yaml +98 -0
- package/agents/bds-yarn-app-health-readonly.yaml +114 -0
- package/agents/pharos-alert-investigator.yaml +81 -0
- package/package.json +60 -0
- package/skills/bds-airflow-job-status-investigation/SKILL.md +104 -0
- package/skills/bds-airflow-job-status-investigation/references/airflow-access-runbook.md +35 -0
- package/skills/bds-airflow-job-status-investigation/references/airflow-bas-dr-runbook.md +42 -0
- package/skills/bds-airflow-job-status-investigation/references/airflow-copy-and-migration-runbook.md +63 -0
- package/skills/bds-airflow-job-status-investigation/references/airflow-job-status-runbook.md +15 -0
- package/skills/bds-airflow-job-status-investigation/references/airflow-output-runbook.md +28 -0
- package/skills/bds-airflow-job-status-investigation/references/airflow-snapshot-runbook.md +38 -0
- package/skills/bds-disk-io-alert-investigation/SKILL.md +116 -0
- package/skills/bds-hadoop-review/SKILL.md +66 -0
- package/skills/bds-machine-inventory/SKILL.md +48 -0
- package/skills/bds-oncall-followup/SKILL.md +71 -0
- package/skills/bds-oncall-followup/references/oncall-followup-runbook.md +58 -0
- package/skills/bds-prism-service-proxy-timeout-investigation/SKILL.md +73 -0
- package/skills/bds-prism-service-proxy-timeout-investigation/references/service-proxy-timeout-runbook.md +48 -0
- package/skills/bds-scylla-tenant-bucket-investigation/SKILL.md +73 -0
- package/skills/bds-scylla-tenant-bucket-investigation/references/tenant-bucket-runbook.md +91 -0
- package/skills/bds-tenant-data-operation-log-investigation/SKILL.md +89 -0
- package/skills/bds-yarn-app-health-investigation/SKILL.md +77 -0
- package/skills/bds-yarn-app-health-investigation/references/yarn-app-health-runbook.md +53 -0
- package/skills/pharos-alert-investigation/SKILL.md +80 -0
- package/src/bds-atomic-log-tools.mjs +300 -0
- package/src/bds-team-membership-claude-output.mjs +36 -0
- package/src/bds-team-membership-quality.mjs +90 -0
- package/tools/bds_airflow_dag_log_read.mjs +24 -0
- package/tools/bds_airflow_job_status_command_pack.mjs +587 -0
- package/tools/bds_bas_log_read.mjs +23 -0
- package/tools/bds_bdm_httpd_log_read.mjs +24 -0
- package/tools/bds_chef_client_log_read.mjs +23 -0
- package/tools/bds_dashboard_links.mjs +178 -0
- package/tools/bds_dashboard_query_knowledge.mjs +258 -0
- package/tools/bds_dashboard_query_read.mjs +120 -0
- package/tools/bds_disk_io_alert_command_pack.mjs +287 -0
- package/tools/bds_environment_host_lookup.mjs +741 -0
- package/tools/bds_hdfs_datanode_log_read.mjs +23 -0
- package/tools/bds_hdfs_journalnode_log_read.mjs +23 -0
- package/tools/bds_hdfs_namenode_log_read.mjs +23 -0
- package/tools/bds_hdfs_path_knowledge.mjs +324 -0
- package/tools/bds_information_source_knowledge.mjs +356 -0
- package/tools/bds_kms_log_read.mjs +23 -0
- package/tools/bds_log_path_knowledge.mjs +267 -0
- package/tools/bds_machine_inventory.mjs +434 -0
- package/tools/bds_mapreduce_historyserver_log_read.mjs +23 -0
- package/tools/bds_migration_service_operation_command_pack.mjs +233 -0
- package/tools/bds_oncall_followup_payload_draft.mjs +285 -0
- package/tools/bds_pharos_query_pack.mjs +218 -0
- package/tools/bds_portal_operation_knowledge.mjs +212 -0
- package/tools/bds_prism_clone_status_links.mjs +129 -0
- package/tools/bds_prism_service_proxy_timeout_query_pack.mjs +224 -0
- package/tools/bds_public_cloud_pod_log_read.mjs +18 -0
- package/tools/bds_scylla_tenant_bucket_command_pack.mjs +323 -0
- package/tools/bds_service_proxy_log_read.mjs +23 -0
- package/tools/bds_spark_historyserver_log_read.mjs +32 -0
- package/tools/bds_spas_mt_log_read.mjs +23 -0
- package/tools/bds_tenant_data_operation_log_command_pack.mjs +321 -0
- package/tools/bds_yarn_app_health_command_pack.mjs +529 -0
- package/tools/bds_yarn_nodemanager_log_read.mjs +23 -0
- package/tools/bds_yarn_resourcemanager_log_read.mjs +23 -0
- package/tools/bds_zookeeper_log_read.mjs +23 -0
- package/tools/confluence_handoff_page_draft.mjs +173 -0
- package/vendor/dashboard/src/grafana-dashboard-query.mjs +61 -0
- package/vendor/extension-read-only-toolkit/LICENSE +202 -0
- package/vendor/extension-read-only-toolkit/README.md +29 -0
- package/vendor/extension-read-only-toolkit/package.json +46 -0
- package/vendor/extension-read-only-toolkit/src/devops-data-paths.mjs +222 -0
- package/vendor/extension-read-only-toolkit/src/devops-diagnostics.mjs +440 -0
- package/vendor/extension-read-only-toolkit/src/enterprise-api-read.mjs +180 -0
- package/vendor/extension-read-only-toolkit/src/read-only-command-pack.mjs +1 -0
- package/vendor/extension-read-only-toolkit/src/read-only-plan.mjs +45 -0
- package/vendor/extension-read-only-toolkit/src/read-only-shell-policy.d.mts +26 -0
- package/vendor/extension-read-only-toolkit/src/read-only-shell-policy.mjs +170 -0
- package/vendor/extension-workday-infra-access/LICENSE +202 -0
- package/vendor/extension-workday-infra-access/README.md +3 -0
- package/vendor/extension-workday-infra-access/agents/workday-infra-access-readonly.yaml +183 -0
- package/vendor/extension-workday-infra-access/package.json +49 -0
- package/vendor/extension-workday-infra-access/skills/workday-infra-access/SKILL.md +102 -0
- package/vendor/extension-workday-infra-access/skills/workday-infra-access/references/access-boundary-runbook.md +43 -0
- package/vendor/extension-workday-infra-access/skills/workday-infra-access/references/access-runbook.md +15 -0
- package/vendor/extension-workday-infra-access/skills/workday-infra-access/references/access-scylla-cloud-runbook.md +39 -0
- package/vendor/extension-workday-infra-access/skills/workday-infra-access/references/access-spc-argo-runbook.md +99 -0
- package/vendor/extension-workday-infra-access/src/workday-access-profiles.mjs +194 -0
- package/vendor/extension-workday-infra-access/tools/aws_cust_federated_readonly_command_pack.mjs +234 -0
- package/vendor/extension-workday-infra-access/tools/gcp_readonly_command_pack.mjs +167 -0
- package/vendor/extension-workday-infra-access/tools/public_cloud_access_status.mjs +48 -0
- package/vendor/extension-workday-infra-access/tools/workday_boundary_login.mjs +460 -0
- package/vendor/extension-workday-infra-access/tools/workday_private_cloud_sudo_readonly_command.mjs +386 -0
- package/vendor/extension-workday-infra-access/tools/workday_public_cloud_environment_map.mjs +189 -0
- package/vendor/extension-workday-infra-access/tools/workday_public_cloud_kubernetes_read.mjs +297 -0
- package/vendor/extension-workday-infra-access/tools/workday_public_cloud_spc_login.mjs +505 -0
- package/vendor/extension-workday-infra-access/tools/workday_spc_argo_readonly_command_pack.mjs +215 -0
- package/vendor/extension-workday-infra-access/workflows/public-cloud-readonly-investigation.js +99 -0
- package/workflows/bds-airflow-job-status-investigation.js +168 -0
- package/workflows/bds-disk-io-alert-investigation.js +173 -0
- package/workflows/bds-oncall-followup.js +112 -0
- package/workflows/bds-prism-service-proxy-timeout-investigation.js +69 -0
- package/workflows/bds-scylla-tenant-bucket-investigation.js +139 -0
- package/workflows/bds-tenant-data-operation-log-investigation.js +189 -0
- package/workflows/bds-yarn-app-health-investigation.js +217 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
export const meta = {
|
|
2
|
+
name: "bds-yarn-app-health-investigation",
|
|
3
|
+
description: "Investigate BDS YARN application host health for Prism timeout requests with read-only aggregated-log discovery, NodeManager checks, and HDFS DataNode cross-checks.",
|
|
4
|
+
whenToUse: "Use when Slack/Jira asks to cross-check data nodes or YARN nodes used by a BDS application ID, especially Prism request timeout cases with a driver host.",
|
|
5
|
+
phases: ["Plan", "ResolveHost", "Access", "Logs", "Nodes", "HDFS", "Historical", "Reply"],
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
phase("Plan");
|
|
9
|
+
const plan = await agent(
|
|
10
|
+
[
|
|
11
|
+
"Extract BDS cluster, driver host, application ID, tenant, prid/cid, and incident UTC window from the user-provided request.",
|
|
12
|
+
"Use the skill flow as the procedure; call only mcp__devops_tool__bds_yarn_app_health_command_pack to normalize inputs and produce the read-only command pack.",
|
|
13
|
+
"No Bash, browser access, WebFetch, local reproduction, or mutating Hadoop/YARN commands.",
|
|
14
|
+
"Do not switch to disk alerts, Jira, Bamboo, Pharos, local repository search, or local cron files for this PRISM/YARN/DataNode host-health workflow.",
|
|
15
|
+
"Do not spawn Agent, Task, TaskCreate, background agents, or worktrees. Keep execution in this workflow and use only the phase tools.",
|
|
16
|
+
"Return parsed fields, missing fields, and command-pack output.",
|
|
17
|
+
].join("\n"),
|
|
18
|
+
{
|
|
19
|
+
label: "bds-yarn-app-plan",
|
|
20
|
+
phase: "Plan",
|
|
21
|
+
tools: "mcp__devops_tool__bds_yarn_app_health_command_pack",
|
|
22
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion",
|
|
23
|
+
},
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
phase("ResolveHost");
|
|
27
|
+
const resolvedHost = await agent(
|
|
28
|
+
[
|
|
29
|
+
"Resolve the concrete BDS driver/control host before Boundary login or remote commands.",
|
|
30
|
+
"If the request provides a driver host, confirm it against BDS host lookup/inventory instead of assuming it is valid for the cluster.",
|
|
31
|
+
"If no driver host is provided, use mcp__devops_tool__bds_environment_host_lookup with roles=[\"resourcemanager\",\"namenode\",\"nodemanager\",\"datanode\"] to choose a read-only host that can run YARN/HDFS status commands.",
|
|
32
|
+
"Keep driverHost, cluster, applicationId, tenant, incidentUtc, and later app node hosts as separate fields.",
|
|
33
|
+
"Do not invent host tools such as workday_host_info, host_info, host_query, or bds_enterprise_host_lookup.",
|
|
34
|
+
"Do not use grep, ls, Read, Glob, repository search, local /hadoop paths, local yarn, or local hdfs as a substitute for host lookup.",
|
|
35
|
+
"If the exact host lookup MCP tool is unavailable or fails, stop and report the exact tool error as a tooling/access gap.",
|
|
36
|
+
"Return driverHost, cluster, lookup evidence, role used, stale host exclusions, and ambiguity.",
|
|
37
|
+
"",
|
|
38
|
+
"Plan:",
|
|
39
|
+
plan,
|
|
40
|
+
].join("\n"),
|
|
41
|
+
{
|
|
42
|
+
label: "bds-yarn-app-resolve-host",
|
|
43
|
+
phase: "ResolveHost",
|
|
44
|
+
tools: "mcp__devops_tool__bds_environment_host_lookup,mcp__devops_tool__bds_machine_inventory",
|
|
45
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion,mcp__devops_tool__workday_boundary_login,mcp__devops_tool__remote_readonly_command",
|
|
46
|
+
},
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
phase("Access");
|
|
50
|
+
const access = await agent(
|
|
51
|
+
[
|
|
52
|
+
"Check Boundary/DC readiness for the resolved driverHost; use workday_boundary_login action=status unless login was explicitly approved.",
|
|
53
|
+
"If sudo needs a password, use only mcp__devops_tool__workday_private_cloud_sudo_readonly_command; never ask for, print, or directly read the LDAP password.",
|
|
54
|
+
"Confirm host identity, UTC clock, and yarn/hdfs/kinit availability with remote_readonly_command.",
|
|
55
|
+
"Use only concrete MCP-Safe Remote Execution JSON inputs from the plan; do not copy bash examples, placeholder inputs, ssh wrappers, semicolons, sudo, or local shell wrappers.",
|
|
56
|
+
"Call remote_readonly_command with exactly the copied JSON object. Do not put ssh in the command field; the tool performs SSH from targetType and host.",
|
|
57
|
+
"If remote_readonly_command is denied or unavailable, report the exact evidence gap and continue only with available PRISM/YARN/DataNode evidence.",
|
|
58
|
+
"Do not modify SSH config, write files, or print passwords, tokens, Keychain JSON, keytabs, or sudo stdin.",
|
|
59
|
+
"Do not switch to disk alerts, Jira, Bamboo, Pharos, local repository search, or local cron files when access is blocked.",
|
|
60
|
+
"",
|
|
61
|
+
"Plan:",
|
|
62
|
+
plan,
|
|
63
|
+
"",
|
|
64
|
+
"ResolvedHost:",
|
|
65
|
+
resolvedHost,
|
|
66
|
+
].join("\n"),
|
|
67
|
+
{
|
|
68
|
+
label: "bds-yarn-app-access",
|
|
69
|
+
phase: "Access",
|
|
70
|
+
tools: "mcp__devops_tool__workday_boundary_login,mcp__devops_tool__remote_readonly_command",
|
|
71
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion",
|
|
72
|
+
},
|
|
73
|
+
);
|
|
74
|
+
|
|
75
|
+
phase("Logs");
|
|
76
|
+
const logs = await agent(
|
|
77
|
+
[
|
|
78
|
+
"Collect read-only YARN and HDFS aggregated-log evidence.",
|
|
79
|
+
"Use Kerberos keytab only as required for reads; run yarn application -status and yarn logs -show_application_log_info before bounded log reads.",
|
|
80
|
+
"If yarn application -status cannot find a historical app, treat that as possible RM retention expiry and read ResourceManager ApplicationSummary logs under /var/log/hadoop-yarn/yarn-yarn-resourcemanager-*.log*.",
|
|
81
|
+
"For full failed-app-id requests, filter ApplicationSummary lines in the incident UTC window by applicationType=SPARK, finalStatus=FAILED, and diagnostics containing exitCode: 0, then return finishTimeUtc, appId, name, user, queue, finalStatus, and appMasterHost.",
|
|
82
|
+
"If RM/Timeline cannot find the app, use hdfs dfs -find for the exact app ID; resolve owner/suffix layouts such as wd1-prod_prism/bucket-logs-tfile/<last4>/<applicationId>.",
|
|
83
|
+
"List and size the resolved app log directory with hdfs dfs -ls and hdfs dfs -du -h.",
|
|
84
|
+
"Use only one concrete MCP-safe remote_readonly_command input at a time from the plan.",
|
|
85
|
+
"If the current plan has no concrete list/size/node/historical MCP-safe inputs because owner or hosts are unknown, first use concrete discovery inputs, then call bds_yarn_app_health_command_pack again with discovered appOwner and nodeHosts.",
|
|
86
|
+
"Do not run hdfs dfs -get, hdfs dfs -rm, hdfs dfs -put, full unbounded yarn logs, or any write command.",
|
|
87
|
+
"If evidence collection is blocked, report the blocked command and do not pivot to unrelated observability or local files.",
|
|
88
|
+
"",
|
|
89
|
+
"Plan:",
|
|
90
|
+
plan,
|
|
91
|
+
"",
|
|
92
|
+
"ResolvedHost:",
|
|
93
|
+
resolvedHost,
|
|
94
|
+
"",
|
|
95
|
+
"Access:",
|
|
96
|
+
access,
|
|
97
|
+
].join("\n"),
|
|
98
|
+
{
|
|
99
|
+
label: "bds-yarn-app-logs",
|
|
100
|
+
phase: "Logs",
|
|
101
|
+
tools: "mcp__devops_tool__remote_readonly_command",
|
|
102
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion",
|
|
103
|
+
},
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
phase("Nodes");
|
|
107
|
+
const nodes = await agent(
|
|
108
|
+
[
|
|
109
|
+
"Derive YARN hosts from aggregated log file names; if newly discovered, call bds_yarn_app_health_command_pack again with nodeHosts for concrete node/historical commands.",
|
|
110
|
+
"Run yarn node -status <host>:45454 for every app host.",
|
|
111
|
+
"Capture Node-State, Health-Report, Last-Health-Update, containers, memory, CPU, and utilization.",
|
|
112
|
+
"If blocked or denied, mark that node evidence-incomplete and do not change scope.",
|
|
113
|
+
"Return a compact node table and identify non-RUNNING or non-empty health reports.",
|
|
114
|
+
"",
|
|
115
|
+
"Logs:",
|
|
116
|
+
logs,
|
|
117
|
+
].join("\n"),
|
|
118
|
+
{
|
|
119
|
+
label: "bds-yarn-app-nodes",
|
|
120
|
+
phase: "Nodes",
|
|
121
|
+
tools: "mcp__devops_tool__bds_yarn_app_health_command_pack,mcp__devops_tool__remote_readonly_command",
|
|
122
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion",
|
|
123
|
+
},
|
|
124
|
+
);
|
|
125
|
+
|
|
126
|
+
phase("HDFS");
|
|
127
|
+
const hdfs = await agent(
|
|
128
|
+
[
|
|
129
|
+
"Collect current HDFS health from hdfs dfsadmin -report: live DataNodes, under-replicated/missing/low-redundancy blocks, corrupt replicas, and pending deletion counts.",
|
|
130
|
+
"For each app host, note DataNode presence, decommission status, and last contact.",
|
|
131
|
+
"Separate NodeManager-only hosts from DataNode hosts.",
|
|
132
|
+
"If HDFS checks are blocked or denied, report the exact evidence gap and do not use disk-alert, Pharos, Jira, Bamboo, or local-file evidence as a substitute.",
|
|
133
|
+
"",
|
|
134
|
+
"Nodes:",
|
|
135
|
+
nodes,
|
|
136
|
+
].join("\n"),
|
|
137
|
+
{
|
|
138
|
+
label: "bds-yarn-app-hdfs",
|
|
139
|
+
phase: "HDFS",
|
|
140
|
+
tools: "mcp__devops_tool__remote_readonly_command",
|
|
141
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion",
|
|
142
|
+
},
|
|
143
|
+
);
|
|
144
|
+
|
|
145
|
+
phase("Historical");
|
|
146
|
+
const historical = await agent(
|
|
147
|
+
[
|
|
148
|
+
"If an incident UTC timestamp is available, check the historical incident window across the app hosts.",
|
|
149
|
+
"Use only read-only host log reads: journalctl -k plus bounded grep/zgrep over YARN NodeManager and HDFS DataNode logs.",
|
|
150
|
+
"Filter routine noise: DFSUtil duration=0, block deletion INFO, DataNode.clienttrace, PacketResponder terminating, and short GC pause detail lines.",
|
|
151
|
+
"Call out only relevant kernel, disk, network, timeout, unhealthy, DataNode, NodeManager, or long-GC signals.",
|
|
152
|
+
"If broad scans drop SSH or time out, retry incomplete hosts with narrower file targets and no SSH multiplexing before concluding.",
|
|
153
|
+
"Do not mutate hosts, services, HDFS, YARN, SSH config, or local files.",
|
|
154
|
+
"If historical checks are blocked or denied, state historical evidence is incomplete and do not pivot to disk alerts, Jira, Bamboo, Pharos, local repository search, or local cron files.",
|
|
155
|
+
"",
|
|
156
|
+
"Logs:",
|
|
157
|
+
logs,
|
|
158
|
+
"",
|
|
159
|
+
"Nodes:",
|
|
160
|
+
nodes,
|
|
161
|
+
"",
|
|
162
|
+
"HDFS:",
|
|
163
|
+
hdfs,
|
|
164
|
+
].join("\n"),
|
|
165
|
+
{
|
|
166
|
+
label: "bds-yarn-app-historical",
|
|
167
|
+
phase: "Historical",
|
|
168
|
+
tools: "mcp__devops_tool__remote_readonly_command",
|
|
169
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion",
|
|
170
|
+
},
|
|
171
|
+
);
|
|
172
|
+
|
|
173
|
+
phase("Reply");
|
|
174
|
+
const reply = await agent(
|
|
175
|
+
[
|
|
176
|
+
"Draft a concise requester-ready answer from collected evidence only.",
|
|
177
|
+
"If a full ResourceManager failed-app list was requested, include timestamps and state the ApplicationSummary filter criteria used.",
|
|
178
|
+
"Include app hosts, current YARN health, current HDFS counters, DataNode matches, and historical-window findings when checked.",
|
|
179
|
+
"If historical logs were checked, state the exact window and whether kernel/YARN NodeManager/HDFS DataNode, disk/network, unhealthy, or long-GC signals were found.",
|
|
180
|
+
"If only current-state checks were performed, state clearly that current-state checks do not prove historical incident-window health.",
|
|
181
|
+
"Do not mention minor unrelated WARNs in the requester-facing reply unless they are plausibly tied to the incident window or HDFS/DataNode path.",
|
|
182
|
+
"Do not overstate RCA or claim there was no issue at the incident time without historical-window evidence.",
|
|
183
|
+
"If any step was blocked by read-only policy or access, include the exact blocked evidence gap and do not replace it with unrelated disk/Jira/Bamboo/Pharos/local evidence.",
|
|
184
|
+
"",
|
|
185
|
+
"Plan:",
|
|
186
|
+
plan,
|
|
187
|
+
"",
|
|
188
|
+
"Logs:",
|
|
189
|
+
logs,
|
|
190
|
+
"",
|
|
191
|
+
"Nodes:",
|
|
192
|
+
nodes,
|
|
193
|
+
"",
|
|
194
|
+
"HDFS:",
|
|
195
|
+
hdfs,
|
|
196
|
+
"",
|
|
197
|
+
"Historical:",
|
|
198
|
+
historical,
|
|
199
|
+
].join("\n"),
|
|
200
|
+
{
|
|
201
|
+
label: "bds-yarn-app-reply",
|
|
202
|
+
phase: "Reply",
|
|
203
|
+
tools: "",
|
|
204
|
+
disallowedTools: "Agent,Task,TaskCreate,Bash,Read,Glob,Grep,WebFetch,WebSearch,Write,Edit,NotebookEdit,AskUserQuestion",
|
|
205
|
+
},
|
|
206
|
+
);
|
|
207
|
+
|
|
208
|
+
return {
|
|
209
|
+
plan,
|
|
210
|
+
resolvedHost,
|
|
211
|
+
access,
|
|
212
|
+
logs,
|
|
213
|
+
nodes,
|
|
214
|
+
hdfs,
|
|
215
|
+
historical,
|
|
216
|
+
reply,
|
|
217
|
+
};
|