Implements Tessl skill review CI/CD pipelines through an interactive, configuration-first wizard. Supports GitHub Actions, Jenkins, and Azure DevOps.
70
90%
Does it follow best practices?
Impact
50%
0.67xAverage score across 6 eval scenarios
Low
Low-risk findings worth noting
Low
Low-risk findings.
2 low severity findings. Worth noting, but not necessarily harmful.
The skill exposes the agent to untrusted, user-generated content from public third-party sources, creating a risk of indirect prompt injection. This includes browsing arbitrary URLs, reading social media posts or forum comments, and analyzing content from unknown websites.
This skill's required workflow explicitly detects and ingests changed SKILL.md files from pull requests (e.g., "Detect changed SKILL.md files" and the various CI templates that run `tessl skill review --json <path>`), and it can optionally run `--optimize --yes` and commit optimized files back to the PR branch — meaning untrusted, user-generated repository/PR content is parsed and can directly influence automated tool actions and commits.
PR-submitted SKILL.md files
content-type · 5 sites
The plugin instructs CI pipelines to detect, parse, and act on changed SKILL.md files from pull requests, which may contain untrusted user-generated content that could influence automated tool actions and commits.
SKILL.md
39
1. **Detect** changed `SKILL.md` files (PR diff or full scan)
SKILL.md
40
2. **Review** each with `tessl skill review --json <path>`
SKILL.md
160
Run `tessl skill review --optimize --yes` to automatically improve skills and commit changes back to the PR branch
SKILL.md
166
Run `tessl skill review --json --optimize --yes "$dir"` instead of `tessl skill review --json "$dir"`
SKILL.md
168
If files changed, commit the optimized files back to the PR branch with message `"chore: auto-optimize skills [skip ci]"`
The skill fetches instructions or code from an external URL at runtime, and the fetched content directly controls the agent’s prompts or executes code. This dynamic dependency allows the external source to modify the agent’s behavior without any changes to the skill itself.
The CI templates repeatedly run "npm install -g @tessl/cli" and then execute "tessl skill review" (and optionally "--optimize --yes"), meaning the workflow fetches and runs remote code from the Tessl npm package (e.g. https://www.npmjs.com/package/@tessl/cli), which is a required runtime dependency that can modify repo files.
tessl skill review
command · 3 sites
The plugin instructs CI pipelines to execute `tessl skill review` as a runtime command, which requires the external tessl CLI tool to be installed and run — an unverifiable external dependency that can modify repository files via --optimize --yes.
SKILL.md
40
`tessl skill review --json <path>`
SKILL.md
160
Run `tessl skill review --optimize --yes`
SKILL.md
166
Run `tessl skill review --json --optimize --yes "$dir"` instead of `tessl skill review --json "$dir"`