Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/ui5/plugins-coding-agents/fix-table-row-modenpx skills add UI5/plugins-coding-agents --skill fix-table-row-modegit clone --depth 1 https://github.com/UI5/plugins-coding-agentsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00131 | $0.01840 |
| Opus 5 | $0.00066 | $0.00920 |
| Sonnet 5 | $0.00026 | $0.00368 |
| Haiku 4.5 | $0.00013 | $0.00184 |
Grade A, and why
fix-table-row-mode scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fix Table Row Mode (no-deprecated-api)
This skill fixes deprecated row-related properties on sap.ui.table.Table that the UI5 linter detects but cannot auto-fix. The modernization replaces flat properties with a structured rowMode aggregation.
IMPORTANT: Do NOT modernize sap.ui.table.Table to sap.m.Table — they are not equivalent.
Linter Rule
| Rule ID | Message Pattern |
|---|---|
no-deprecated-api |
Use of deprecated property 'visibleRowCountMode' of class 'sap.ui.table.Table' |
no-deprecated-api |
Use of deprecated property 'visibleRowCount' of class 'sap.ui.table.Table' |
no-deprecated-api |
Use of deprecated property 'rowHeight' of class 'sap.ui.table.Table' |
no-deprecated-api |
Use of deprecated property 'fixedRowCount' of class 'sap.ui.table.Table' |
no-deprecated-api |
Use of deprecated property 'fixedBottomRowCount' of class 'sap.ui.table.Table' |
no-deprecated-api |
Use of deprecated property 'minAutoRowCount' of class 'sap.ui.table.Table' |
Property Mapping
Deprecated Property on Table |
New Property on RowMode |
Notes |
|---|---|---|
visibleRowCountMode |
(Determines RowMode class) | "Fixed" → rowmodes:Fixed, "Interactive" → rowmodes:Interactive, "Auto" → rowmodes:Auto |
visibleRowCount |
rowCount |
Used in Fixed and Interactive mode |
minAutoRowCount |
minRowCount |
Used only in Auto mode |
rowHeight |
rowContentHeight |
Name change |
fixedRowCount |
fixedTopRowCount |
Name change (Top added) |
fixedBottomRowCount |
fixedBottomRowCount |
No change |
RowMode Class Selection
Choose based on the old visibleRowCountMode value:
"Fixed"(or not set — this is the default) →rowmodes:Fixed"Interactive"→rowmodes:Interactive"Auto"→rowmodes:Auto
Pre-Modernization Safety Check
If a property set on the Table doesn't exist on the selected RowMode class (e.g., minAutoRowCount on a Fixed mode table), this indicates possible dynamic row mode switching. Abort modernization for that table and flag for manual review.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 212 lines · 131 tokens per session scan A 5200c461611f
fix-table-row-mode is a skill published in the GitHub repository UI5/plugins-coding-agents (34 stars, last pushed 13d ago), licensed Apache-2.0. It adds 131 tokens to every session and 1,840 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
plugin-init
初始化 Zhin.js 插件项目。Use when asked to create a new plugin, scaffold plugin structure, or set up a plugin project. 引导生成符合 Plugin Runtime 规范的目录结构、package.json、plugin.ts、约定能力目录和 README。.
plugin-publish
发布 Zhin.js 插件到 npm 和 Zhin 插件市场。Use when asked to publish a plugin, prepare for release, check publish readiness, or submit to the Zhin plugin marketplace. 引导完成发布前检查、版本管理和提交流程。.
plugin-develop
Implement Zhin.js plugin features with Plugin Runtime: defineCommand, defineAgentTool, middleware, pages. Use when asked to add a command, register a tool, wire cron, extend middleware, or build a console page. Triggers: 插件开发, add command, 加命令, 写插件功能, defineCommand.
wordpress-plugin-fundamentals
Modern WordPress plugin development with PHP 8.3+, OOP architecture, hooks system, database interactions, and Settings API.
view-chain-layout
The layout rules for a z2ui5clui5viewbuilder chain - one call per line, four spaces per tree level, the end( ) column, which factory( ) shape goes with which chain shape, blank lines, and the linter rule that checks them. Identical in abap2UI5, abap2UI5/samples, abap2UI5/samples-controls and abap2UI5/samples-stack.…
agent-development
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development…