tlamatini-exec-report-row-adder

Insert a tool entry into _EXEC_REPORT_TOOLS and update agent_page.css styling.

14|1|Updated Mar 6, 2026
One-click install
npx skills add https://github.com/XAIHT/Tlamatini --skill tlamatini-exec-report-row-adder
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: tlamatini-exec-report-row-adder
Source: https://github.com/XAIHT/Tlamatini/tree/main/Tlamatini/agent/skills_pkg/tlamatini_exec_report_row_adder
Command: npx skills add https://github.com/XAIHT/Tlamatini --skill tlamatini-exec-report-row-adder

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables adding new tools to the Exec Report by updating the Python mapping and the corresponding CSS styles, making new capabilities visible and manageable from the chat UI.

Core Features & Use Cases

  • Tool registry integration: Adds a new entry to the _EXEC_REPORT_TOOLS map in Tlamatini/agent/mcp_agent.py.
  • UI styling synchronization: Updates agent_page.css with caption styling and border rules so the tool appears distinctly in the Exec Report.
  • Validation harness: Provides a Django-based test flow to verify the integration end-to-end.

Quick Start

Add the new tool entry to _EXEC_REPORT_TOOLS, update the CSS rules for the caption and border, and run the Django tests to verify the integration.

Frequently Asked Questions about tlamatini-exec-report-row-adder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a new tool entry to the Exec Report in a Django application?

Adding a new tool to the Exec Report involves inserting an entry into the _EXEC_REPORT_TOOLS mapping in mcp_agent.py and updating agent_page.css with caption and border styling. This ensures the tool displays correctly in the chat page's UI.

How does CSS styling integrate with Python tool mappings for chat UI reports?

CSS styling integrates with the Python tool mapping by applying caption and border rules in agent_page.css. This ensures the newly mapped tool from _EXEC_REPORT_TOOLS appears distinctly within the chat page's Exec Report interface.

Do I need Django tests to verify new Exec Report tool integration?

You need Django tests to verify new Exec Report tool integration because the validation harness runs them to confirm the setup. The testing process reports pass or fail results, ensuring the Python mapping and CSS updates function correctly.

What is the best way to make new Python capabilities visible in a chat UI Exec Report?

The best way to make new capabilities visible is to register the tool in the _EXEC_REPORT_TOOLS map and synchronize the UI styling in agent_page.css. This updates the chat page interface to display the new tool entry in the Exec Report.

Why does my new Exec Report tool not display correctly in the chat page?

Your new Exec Report tool may not display correctly if the CSS rules in agent_page.css are missing caption or border styling. You must also ensure the tool is properly inserted into the _EXEC_REPORT_TOOLS mapping in mcp_agent.py.