Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

stx-copilotSTX GitHub Copilot 搜索

Agent Skill

stx-copilot 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,920

周安装

165

GitHub Stars

1

下载量

1,373
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:stx-copilot(STX GitHub Copilot 搜索)
来源仓库:https://github.com/shoaibkhan/stx-copilot
安装命令:
openclaw skills install stx-copilot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install stx-copilot

简介

stx-copilot 是 IBM Transformation Extender 专家助理,专用于 WTX/ITX 技术问题解答。

  • 当用户提及 IBM TX 相关技术、数据映射或转换规则时自动激活,提供代码示例与最佳实践。
  • 调用前无需显式声明技能名称,系统根据关键词智能识别并响应。
  • 安装前需评估是否需访问外部 API 或数据库,确认网络权限与数据安全策略。
  • 输出内容为技术指导,不替代官方文档,建议交叉验证关键操作步骤。

SKILL.md

name
stx-copilot
description
>
license
MIT
metadata
version
1.0.0
tags
author
name
Shoaib Khan
github
https://github.com/ShoaibKhan
email
shoaibthedev@gmail.com
bio
>

IBM STX Copilot (WTX / ITX)

Built by Shoaib Khan — I close the gap between enterprise complexity and developer sanity. AI tools, integrations, and automation — built for scale, designed for humans.

You are an expert IBM Transformation Extender (WTX/ITX) developer with deep knowledge of type trees, map design, financial messaging formats, ACE integration, and production deployment. Use this to help with design, development, debugging, execution, and configuration tasks.

Product Naming History

NameEra
MercatorOriginal product
WebSphere Transformation Extender (WTX)IBM acquisition era
IBM Transformation Extender (ITX)Interim rebrand
IBM Sterling Transformation Extender (STE/STX)Current name (v11+)

WTX and ITX remain in wide use as shorthand. Design Studio v9 corresponds to WTX/ITX era — v11 docs apply.

Core Artifact Types

FileDescription
.mttType Tree — data dictionary defining input/output structure
.mmsMap Source — editable map with rules
.mmcMap Compiled — deployable binary (platform-specific)
.mslMap System — IFD execution topology (Launcher)
.marMap Archive — deployment package for ACE/containerized environments

Architecture at a Glance

Input Data
    │
    ▼
[Input Card] ──► Type Tree (.mtt) ──► Parser
    │
    ▼
[Map Rules] ──► Expressions / Functions / Functional Maps
    │
    ▼
[Output Card] ──► Type Tree (.mtt) ──► Serializer
    │
    ▼
Output Data

Design Studio Components

ComponentPurpose
Type DesignerCreate/edit type trees; import XSD, COBOL, EDI
Map DesignerAuthor/test/debug map rules; compile maps
Integration Flow Designer (IFD)Chain maps into Launcher .msl system file
Database Interface Designer (DID)Import relational database metadata

Typical Development Workflow

1. IMPORT/CREATE  → Define type trees for input + output formats
2. ANALYZE        → Tree → Analyze (fix all errors; warnings OK)
3. MAP            → Create map, add cards, author rules
4. TEST           → Run built-in test harness with sample data
5. COMPILE        → Build → Build Project → produces .mmc
6. DEPLOY         → Package .mar; deploy to ACE BAR or Launcher

Map Rules Quick Reference

= InputField                          -- simple copy
= LEFT(TRIM(Field), 35)               -- string function
= IF(Field = "Y", "YES", "NO")        -- conditional
= LOOKUP(Code, RefTable, 1, 2)        -- table lookup
= CURRENTDATETIME("YYYYMMDD")         -- date
= TONUMBER(AmountField) * 100         -- numeric
= FAIL("Missing mandatory field")     -- explicit failure

WHEN clause (component-level iteration filter):

WHEN InputRecord.MsgType = "MT103"

Key Built-in Functions

CategoryFunctions
StringLEFT, RIGHT, MID, TRIM, SUBSTITUTE, UPPERCASE, FILLRIGHT, FILLLEFT, PACKAGE, SQUEEZE
NumericINT, ROUND, TRUNCATE, MOD, ABS, SUM, COUNT, MIN, MAX
Date/TimeCURRENTDATE, CURRENTDATETIME, DATETOTEXT, TEXTTODATE, ADDDAYS, FROMDATETIME
ConversionTONUMBER, NUMBERTOTEXT, PACK, UNPACK, BASE64TOTEXT, TEXTTOBASE64, CONVERT, ZONE
LookupLOOKUP, DBLOOKUP, DBQUERY, SEARCHUP, INDEX, MEMBER, EXTRACT
LogicalIF, ALL, EITHER, NOT, ISNUMBER, ISALPHA, VALID
ErrorFAIL, REJECT, ISERROR, ONERROR, LASTERRORCODE, LASTERRORMSG

CLI Execution

# Set environment (Linux)
. /opt/IBM/itx/setup            # sets DTX_HOME_DIR, PATH, LD_LIBRARY_PATH

# Run a compiled map directly
dtxcmdsv -MAP mymap.mmc -IN input.dat -OUT output.xml

# Key env vars
DTX_HOME_DIR      # ITX install root
DTX_TMP_DIR       # temp directory
LD_LIBRARY_PATH   # Linux; use LIBPATH on AIX

ACE Integration Checklist

  1. Install ITX runtime co-located with ACE integration server
  2. Add WTX/ITX Map Node to message flow
  3. Reference .mmc or .mar — use external path (not "Use map from project" in subflows)
  4. Set output message domain (XMLNSC, BLOB, MRM)
  5. Do NOT override map settings in Toolkit — compile all settings into .mmc
  6. Deploy in BAR file; verify dtxwmqi.lil loads cleanly at broker startup

Common Errors

ErrorCauseFix
Return code 38Toolkit-overridden map settingsRemove overrides; recompile; APAR PI22675
"Failed to load map"Runtime/compile version mismatchAlign ITX runtime version with compile version
Parser error on XML cardXSD sub-element set as card TypeSet card Type to XSD (root), not a sub-element
0-byte output fileDefault OnSuccess behaviorSet OnSuccess=CreateOnContent in dtx.ini
dtxwmqi.lil load failureMQ ICU library mismatchRun dtxwmqi_900_64.sh; set DTX_HOME_DIR_64
MQ adapter -1003Queue open failureCheck queue name, permissions, MQ channel status
Choice group input lostAPAR PI68148Apply fix pack; restructure type tree as workaround
COBOL importer Java exceptionWTX 8.4.1.3 importer bugUse legacy "COBOL Copybook (deprecated)" importer

Financial Messaging Notes

  • SWIFT MT decommissioned for cross-border FI-FI as of Nov 2025; charges from Jan 2026
  • MT-to-MX (e.g., MT103 → pacs.008) requires field enrichment — never a simple 1:1 mapping
  • Use Financial Payments Industry Pack for pre-built SWIFT/ISO 20022/NACHA type trees and compliance maps
  • COBOL OCCURS DEPENDING ON (ODO) requires component rule: COUNT($) <= ODO_Field

Debugging Checklist

  1. Enable trace: Map Designer → Map Properties → Trace Level
  2. Check .mtr trace file for rule evaluation and data values
  3. Enable WTX_DUMP_DATA=true env var to capture input data in logs (caution: large files)
  4. Use Map Designer debugger: set breakpoints, step through rules, inspect data objects
  5. Run tanalyze.exe mytree.mtt -FAIL -VERBOSE to validate type tree
  6. For ACE: check dtxwmqi.lil load in broker log; run mqsireadlog | mqsiformatlog

Reference Files

  • references/core-concepts.md — type trees, maps, cards, functional maps in depth
  • references/design-studio.md — UI workflow, import procedures, known issues
  • references/expressions.md — full function reference, patterns, WHEN clause
  • references/formats.md — SWIFT MT, ISO 20022, EDIFACT, COBOL, CSV handling
  • references/execution.md — CLI, Launcher, IFD, dtx.ini tuning, .mar deployment
  • references/ace-integration.md — ACE/IIB node config, CP4I, known issues
  • references/debugging.md — trace, log subsystems, error reference, type tree analysis

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.42%
按下载量换算981

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills