@thinkingai/ae-cli 6.0.27 → 6.0.28

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.
Files changed (64) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/{te-analysis-QMZ2UH7F.js → te-analysis-5WZKVFHI.js} +1158 -302
  3. package/dist/{te-analysis-2U5EPXQC.js → te-analysis-KAEZXLNS.js} +1158 -302
  4. package/package.json +1 -1
  5. package/skills/ae-analysis/SKILL.md +56 -4
  6. package/skills/ae-analysis/references/analysis_gateway_assets.md +7 -5
  7. package/skills/ae-analysis/references/asset_abnormal_get.md +27 -0
  8. package/skills/ae-analysis/references/asset_abnormal_list.md +24 -0
  9. package/skills/ae-analysis/references/asset_authentication_list.md +23 -0
  10. package/skills/ae-analysis/references/asset_authentication_update.md +24 -0
  11. package/skills/ae-analysis/references/asset_recent_list.md +24 -0
  12. package/skills/ae-analysis/references/asset_search.md +24 -0
  13. package/skills/ae-analysis/references/bi_panel_get.md +5 -0
  14. package/skills/ae-analysis/references/bi_panel_share.md +6 -0
  15. package/skills/ae-analysis/references/bi_panel_update.md +4 -1
  16. package/skills/ae-analysis/references/bi_panel_version_get.md +23 -0
  17. package/skills/ae-analysis/references/bi_panel_version_publish.md +20 -0
  18. package/skills/ae-analysis/references/dashboard_daily_report_send.md +6 -1
  19. package/skills/ae-analysis/references/dashboard_report_data_export.md +6 -0
  20. package/skills/ae-analysis/references/dashboard_report_data_run.md +6 -0
  21. package/skills/ae-analysis/references/datatable_columns_get.md +24 -0
  22. package/skills/ae-analysis/references/datatable_influence_list.md +24 -0
  23. package/skills/ae-analysis/references/datatable_version_get.md +24 -0
  24. package/skills/ae-analysis/references/datatable_version_list.md +24 -0
  25. package/skills/ae-analysis/references/event_changelog_list.md +24 -0
  26. package/skills/ae-analysis/references/event_create.md +24 -0
  27. package/skills/ae-analysis/references/event_delete.md +24 -0
  28. package/skills/ae-analysis/references/event_get.md +24 -0
  29. package/skills/ae-analysis/references/event_hide_update.md +25 -0
  30. package/skills/ae-analysis/references/event_influence_list.md +24 -0
  31. package/skills/ae-analysis/references/event_list.md +23 -0
  32. package/skills/ae-analysis/references/event_relation_update.md +24 -0
  33. package/skills/ae-analysis/references/event_update.md +26 -0
  34. package/skills/ae-analysis/references/exchange_config_update.md +24 -0
  35. package/skills/ae-analysis/references/exchange_rate_refresh.md +23 -0
  36. package/skills/ae-analysis/references/exchange_rule_list.md +23 -0
  37. package/skills/ae-analysis/references/exchange_rule_update.md +24 -0
  38. package/skills/ae-analysis/references/exchange_rule_validate.md +24 -0
  39. package/skills/ae-analysis/references/metric_create.md +24 -0
  40. package/skills/ae-analysis/references/metric_delete.md +24 -0
  41. package/skills/ae-analysis/references/metric_get.md +24 -0
  42. package/skills/ae-analysis/references/metric_list.md +24 -0
  43. package/skills/ae-analysis/references/metric_update.md +24 -0
  44. package/skills/ae-analysis/references/property_changelog_list.md +25 -0
  45. package/skills/ae-analysis/references/property_create.md +25 -0
  46. package/skills/ae-analysis/references/property_delete.md +25 -0
  47. package/skills/ae-analysis/references/property_get.md +25 -0
  48. package/skills/ae-analysis/references/property_hide_update.md +26 -0
  49. package/skills/ae-analysis/references/property_influence_list.md +25 -0
  50. package/skills/ae-analysis/references/property_list.md +24 -0
  51. package/skills/ae-analysis/references/property_related_events.md +24 -0
  52. package/skills/ae-analysis/references/property_relation_update.md +25 -0
  53. package/skills/ae-analysis/references/property_update.md +27 -0
  54. package/skills/ae-analysis/references/super_metadata_export.md +36 -0
  55. package/skills/ae-analysis/references/super_metadata_import.md +24 -0
  56. package/skills/ae-analysis/references/virtual_event_create.md +25 -0
  57. package/skills/ae-analysis/references/virtual_event_delete.md +24 -0
  58. package/skills/ae-analysis/references/virtual_event_get.md +24 -0
  59. package/skills/ae-analysis/references/virtual_property_create.md +24 -0
  60. package/skills/ae-analysis/references/virtual_property_sql_rule_delete.md +25 -0
  61. package/skills/ae-analysis/references/virtual_property_sql_rule_update.md +24 -0
  62. package/skills/ae-generate-tracking-code/SKILL.md +16 -1
  63. package/skills/ae-generate-tracking-code/references/snippet-delivery.md +17 -1
  64. package/skills/ae-generate-tracking-plan/SKILL.md +30 -8
@@ -0,0 +1,25 @@
1
+ # analysis event hide-update
2
+
3
+ Use when the user needs to batch hide or show events.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis event hide-update --project-id <project_id> --event-names '{}' --is-hide true
11
+ ae-cli analysis event hide-update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.event.hide_update`.
15
+
16
+ Input sends `project_id`, `event_names`, `is_hide`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--event-names` | Yes | Event names JSON array, or a JSON string accepted by common-service. |
25
+ | `--is-hide` | Yes | Whether to hide the events. |
@@ -0,0 +1,24 @@
1
+ # analysis event influence-list
2
+
3
+ Use when the user needs to list assets affected by event delete, hide, or update.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis event influence-list --project-id <project_id> --event-name <event_name>
11
+ ae-cli analysis event influence-list --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.event.influence_list`.
15
+
16
+ Input sends `project_id`, `event_name`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--event-name` | Yes | Event name. |
@@ -0,0 +1,23 @@
1
+ # analysis event list
2
+
3
+ Use when the user needs to list project super events.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis event list --project-id <project_id>
11
+ ae-cli analysis event list --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.event.list`.
15
+
16
+ Input sends `project_id`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
@@ -0,0 +1,24 @@
1
+ # analysis event relation-update
2
+
3
+ Use when the user needs to update event-property connection or source relations.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis event relation-update --project-id <project_id> --payload '{}'
11
+ ae-cli analysis event relation-update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.event.relation_update`.
15
+
16
+ Input sends `project_id`, `payload`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--payload` | Yes | Capability payload JSON. |
@@ -0,0 +1,26 @@
1
+ # analysis event update
2
+
3
+ Use when the user needs to update event display names and remarks.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis event update --project-id <project_id> --event-name <event_name> --event-desc <event_desc> --remark <remark>
11
+ ae-cli analysis event update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.event.update`.
15
+
16
+ Input sends `project_id`, `event_name`, `event_desc`, `remark`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--event-name` | Yes | Event name. |
25
+ | `--event-desc` | No | Event display name. |
26
+ | `--remark` | No | Event remark. |
@@ -0,0 +1,24 @@
1
+ # analysis exchange config-update
2
+
3
+ Use when the user needs to update exchange-rate configuration switch or value.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis exchange config-update --project-id <project_id> --config-val <config_val>
11
+ ae-cli analysis exchange config-update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.exchange_config.update`.
15
+
16
+ Input sends `project_id`, `config_val`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--config-val` | Yes | Exchange-rate configuration value. |
@@ -0,0 +1,23 @@
1
+ # analysis exchange rate-refresh
2
+
3
+ Use when the user needs to refresh exchange-rate data manually.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis exchange rate-refresh --project-id <project_id>
11
+ ae-cli analysis exchange rate-refresh --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.exchange_rate.refresh`.
15
+
16
+ Input sends `project_id`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
@@ -0,0 +1,23 @@
1
+ # analysis exchange rule-list
2
+
3
+ Use when the user needs to list exchange-rate conversion rules.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis exchange rule-list --project-id <project_id>
11
+ ae-cli analysis exchange rule-list --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.exchange_rule.list`.
15
+
16
+ Input sends `project_id`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
@@ -0,0 +1,24 @@
1
+ # analysis exchange rule-update
2
+
3
+ Use when the user needs to save currency field, amount field, and target currency rules.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis exchange rule-update --project-id <project_id> --payload '{}'
11
+ ae-cli analysis exchange rule-update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.exchange_rule.update`.
15
+
16
+ Input sends `project_id`, `payload`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--payload` | Yes | Capability payload JSON. |
@@ -0,0 +1,24 @@
1
+ # analysis exchange rule-validate
2
+
3
+ Use when the user needs to validate affected range before saving exchange-rate rules.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis exchange rule-validate --project-id <project_id> --payload '{}'
11
+ ae-cli analysis exchange rule-validate --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.exchange_rule.validate`.
15
+
16
+ Input sends `project_id`, `payload`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--payload` | Yes | Capability payload JSON. |
@@ -0,0 +1,24 @@
1
+ # analysis metric create
2
+
3
+ Use when the user needs to create a metric from event or retention analysis configuration.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis metric create --project-id <project_id> --payload '{}'
11
+ ae-cli analysis metric create --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.metric.create`.
15
+
16
+ Input sends `project_id`, `payload`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--payload` | Yes | Capability payload JSON. |
@@ -0,0 +1,24 @@
1
+ # analysis metric delete
2
+
3
+ Use when the user needs to delete a metric.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis metric delete --project-id <project_id> --metric-id <metric_id>
11
+ ae-cli analysis metric delete --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.metric.delete`.
15
+
16
+ Input sends `project_id`, `metric_id`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--metric-id` | Yes | Metric ID. |
@@ -0,0 +1,24 @@
1
+ # analysis metric get
2
+
3
+ Use when the user needs to get metric definition, events, and params.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis metric get --project-id <project_id> --metric-id <metric_id>
11
+ ae-cli analysis metric get --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.metric.get`.
15
+
16
+ Input sends `project_id`, `metric_id`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--metric-id` | Yes | Metric ID. |
@@ -0,0 +1,24 @@
1
+ # analysis metric list
2
+
3
+ Use when the user needs to list project metrics.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis metric list --project-id <project_id> --ignore-authentication true
11
+ ae-cli analysis metric list --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.metric.list`.
15
+
16
+ Input sends `project_id`, `ignore_authentication`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--ignore-authentication` | No | Whether to skip asset authentication status decoration. |
@@ -0,0 +1,24 @@
1
+ # analysis metric update
2
+
3
+ Use when the user needs to update metric definition, name, and remark.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis metric update --project-id <project_id> --payload '{}'
11
+ ae-cli analysis metric update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.metric.update`.
15
+
16
+ Input sends `project_id`, `payload`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--payload` | Yes | Capability payload JSON. |
@@ -0,0 +1,25 @@
1
+ # analysis property changelog-list
2
+
3
+ Use when the user needs to list property metadata change logs.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property changelog-list --project-id <project_id> --table-type <table_type> --prop-name <prop_name>
11
+ ae-cli analysis property changelog-list --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.changelog_list`.
15
+
16
+ Input sends `project_id`, `table_type`, `prop_name`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--prop-name` | Yes | Property column name. |
@@ -0,0 +1,25 @@
1
+ # analysis property create
2
+
3
+ Use when the user needs to create event or user properties and optionally associate events.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property create --project-id <project_id> --table-type <table_type> --payload '{}'
11
+ ae-cli analysis property create --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.create`.
15
+
16
+ Input sends `project_id`, `table_type`, `payload`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--payload` | Yes | Capability payload JSON. |
@@ -0,0 +1,25 @@
1
+ # analysis property delete
2
+
3
+ Use when the user needs to batch delete properties or virtual properties.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property delete --project-id <project_id> --table-type <table_type> --prop-names '{}'
11
+ ae-cli analysis property delete --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.delete`.
15
+
16
+ Input sends `project_id`, `table_type`, `prop_names`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--prop-names` | Yes | Property names JSON array, or a JSON string accepted by common-service. |
@@ -0,0 +1,25 @@
1
+ # analysis property get
2
+
3
+ Use when the user needs to get one event or user property metadata detail.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property get --project-id <project_id> --table-type <table_type> --prop-name <prop_name>
11
+ ae-cli analysis property get --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.get`.
15
+
16
+ Input sends `project_id`, `table_type`, `prop_name`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--prop-name` | Yes | Property column name. |
@@ -0,0 +1,26 @@
1
+ # analysis property hide-update
2
+
3
+ Use when the user needs to batch hide or show properties.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property hide-update --project-id <project_id> --table-type <table_type> --prop-names '{}' --is-hide true
11
+ ae-cli analysis property hide-update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.hide_update`.
15
+
16
+ Input sends `project_id`, `table_type`, `prop_names`, `is_hide`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--prop-names` | Yes | Property names JSON array, or a JSON string accepted by common-service. |
26
+ | `--is-hide` | Yes | Whether to hide the properties. |
@@ -0,0 +1,25 @@
1
+ # analysis property influence-list
2
+
3
+ Use when the user needs to list assets affected by property changes.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property influence-list --project-id <project_id> --table-type <table_type> --prop-name <prop_name>
11
+ ae-cli analysis property influence-list --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.influence_list`.
15
+
16
+ Input sends `project_id`, `table_type`, `prop_name`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--prop-name` | Yes | Property column name. |
@@ -0,0 +1,24 @@
1
+ # analysis property list
2
+
3
+ Use when the user needs to list event or user properties.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property list --project-id <project_id> --table-type <table_type>
11
+ ae-cli analysis property list --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.list`.
15
+
16
+ Input sends `project_id`, `table_type`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
@@ -0,0 +1,24 @@
1
+ # analysis property related-events
2
+
3
+ Use when the user needs to list events related to one event property.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property related-events --project-id <project_id> --prop-name <prop_name>
11
+ ae-cli analysis property related-events --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.related_events`.
15
+
16
+ Input sends `project_id`, `prop_name`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--prop-name` | Yes | Event property column name. |
@@ -0,0 +1,25 @@
1
+ # analysis property relation-update
2
+
3
+ Use when the user needs to update property type, connection relation, or event mapping.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property relation-update --project-id <project_id> --table-type <table_type> --payload '{}'
11
+ ae-cli analysis property relation-update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.relation_update`.
15
+
16
+ Input sends `project_id`, `table_type`, `payload`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--payload` | Yes | Capability payload JSON. |
@@ -0,0 +1,27 @@
1
+ # analysis property update
2
+
3
+ Use when the user needs to update property display names and remarks.
4
+
5
+ Do not use this command for unrelated analysis queries, ad-hoc query construction, or MCP metadata discovery when an existing specialized command already fits the user's request.
6
+
7
+ Command:
8
+
9
+ ```bash
10
+ ae-cli analysis property update --project-id <project_id> --table-type <table_type> --prop-name <prop_name> --prop-desc <prop_desc> --prop-remark <prop_remark>
11
+ ae-cli analysis property update --dry-run
12
+ ```
13
+
14
+ Capability id: `metadata.property.update`.
15
+
16
+ Input sends `project_id`, `table_type`, `prop_name`, `prop_desc`, `prop_remark`.
17
+
18
+ Output is the gateway envelope. `data` contains the common-service capability result.
19
+
20
+ ## Parameters
21
+ | Parameter | Required | Description |
22
+ |---|---|---|
23
+ | `--project-id` | Yes | Numeric project ID. |
24
+ | `--table-type` | Yes | Property table type. |
25
+ | `--prop-name` | Yes | Property column name. |
26
+ | `--prop-desc` | No | Property display name. |
27
+ | `--prop-remark` | No | Property remark. |