Releases: zydo/agent-readable-ts
Releases · zydo/agent-readable-ts
Release list
v0.1.5
Full Changelog: v0.1.4...v0.1.5
v0.1.4
What's Changed
Breaking (CLI): on-demand package fetching is now opt-in. When a package is not installed locally or cached, the CLI exits with an error instead of silently running npm install — pass --install to fetch it on demand.
- On-demand installs now run with
--ignore-scripts, so lifecycle scripts of fetched packages never execute - Unknown CLI options are rejected with usage instead of being ignored
- New README "Security" section documenting the fetch behavior, cache location (
~/.cache/agent-readable-ts, override withAGENT_READABLE_CACHE), and script policy
These changes address supply-chain warnings flagged by socket.dev for runtime package downloads.
Full Changelog: v0.1.3...v0.1.4
Full Changelog: v0.1.3...v0.1.4
v0.1.3
v0.1.2
v0.1.1
Patch release for package export/type discovery.
- List runtime package exports when TypeScript declarations cannot be resolved, so commands like
agent-readable-ts openaishow available exports instead of failing. - Install TypeScript as a runtime dependency so
npx agent-readable-ts commander:Commandcan parse declaration files and include typed method signatures.