@carlosgtrz/tpsreader-agent-skill
Multi-agent skill for safely reading Clarion TopSpeed TPS files with TpsReader.
Package details
Install @carlosgtrz/tpsreader-agent-skill from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@carlosgtrz/tpsreader-agent-skill- Package
@carlosgtrz/tpsreader-agent-skill- Version
1.0.2- Published
- Jul 26, 2026
- Downloads
- 196/mo · 196/wk
- Author
- carlosgtrz
- License
- Apache-2.0
- Types
- skill
- Size
- 28.3 KB
- Dependencies
- 0 dependencies · 0 peers
Pi manifest JSON
{
"skills": [
"./skills"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
TpsReader Agent Skill
Use the read-tps-files Agent Skill to inspect schemas, run bounded read-only queries, and explicitly export Clarion TopSpeed (.TPS) files with the TpsReader CLI.
The same skill is packaged for Codex, Claude Code, and Pi. Source TPS files are always treated as immutable.
Prerequisites
The skill first uses a compatible global tps command. Install the .NET tool with:
dotnet tool install --global TpsReader.Tool
When .NET 8 or later is unavailable, the skill can offer an explicit, user-approved download of a verified native executable from an official TpsReader GitHub release. It never installs or updates tools automatically.
Install
Codex
codex plugin marketplace add CarlosGtrz/TpsReader --sparse .agents/plugins --sparse plugins
codex plugin add tpsreader@tpsreader
Invoke the skill as $read-tps-files.
Claude Code
claude plugin marketplace add CarlosGtrz/TpsReader --sparse .claude-plugin plugins
claude plugin install tpsreader@tpsreader
Invoke the skill as /tpsreader:read-tps-files.
Pi
pi install npm:@carlosgtrz/tpsreader-agent-skill@1.0.2
Invoke the skill as /skill:read-tps-files, or let Pi select it from the task.
Examples
Use read-tps-files to show the schema of C:\data\CUSTOMER.TPS.
Query customer number and company from CUSTOMER.TPS, limited to 20 rows.
Export the CUSTOMER table from CUSTOMER.TPS to C:\exports.
The skill discovers schema before reading rows, uses explicit limits, keeps owner keys out of command arguments, and requests confirmation before potentially overwriting export files.
The skill requires TpsReader CLI 0.3.6 or later. It verifies tps --version
and command compatibility before use. Missing or incompatible tools are never
installed or updated without confirmation.
Supported platforms
The .NET global tool works wherever a compatible .NET runtime is available. Verified native fallback downloads are limited to:
- Windows x64 (
win-x64) - glibc Linux x64 (
linux-x64) - Apple silicon macOS (
osx-arm64)
Other platforms require the .NET global tool.
Versioning
This Agent Skill uses independent semantic versions. A skill release does not change the TpsReader library or CLI version, and native executables remain separate TpsReader release assets rather than npm package contents.
Permissions and network access
- TPS source files are read-only and are never moved, deleted, replaced, or overwritten.
- Exports occur only after an explicit request and may create CSV and BLOB files in the chosen destination.
- Owner values are read only through a user-provided environment variable.
- GitHub network access occurs only when resolving a native fallback or when the user explicitly requests an update.
- Native downloads require confirmation and are verified by asset size, SHA-256, archive structure, executable hash, and CLI capabilities before use.
- Native executables are stored in a per-user TpsReader cache, never in the plugin installation.
- TPS contents and parser output are treated as untrusted data, not instructions.
Update and remove
Codex:
codex plugin marketplace upgrade tpsreader
codex plugin remove tpsreader@tpsreader
codex plugin add tpsreader@tpsreader
codex plugin remove tpsreader@tpsreader
codex plugin marketplace remove tpsreader
Claude Code:
claude plugin update tpsreader@tpsreader
claude plugin uninstall tpsreader@tpsreader
claude plugin marketplace remove tpsreader
Pi:
pi update npm:@carlosgtrz/tpsreader-agent-skill
pi remove npm:@carlosgtrz/tpsreader-agent-skill
Removing the package does not remove a separately installed .NET global tool or a user-approved native cache entry.
License
Apache-2.0. See LICENSE.