Install
$ agentstack add skill-krastanov-juliallmagentskills-julia-term ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Term.jl
Use this skill for all Term.jl work. Keep the entry point small and load only the reference file that matches the task.
Quick Start
using Term
tprint("{bold green}Hello{/bold green}")
print(Panel("content"; title="Example", width=40))
print(Panel(width=20) * Panel(width=20))
Core Modules
using Term
using Term.Layout
using Term.Progress
using Term.LiveWidgets
Termcovers markup,tprint,Panel, themes, repr, and markdown rendering.Term.Layoutcovers stacking, alignment, grids, spacers, and compositors.Term.Progresscovers progress bars and custom progress columns.Term.LiveWidgetscoversApp, widgets, keyboard handling, and navigation.
Common Patterns
Styling
tprint("{bold blue}status{/bold blue}")
set_theme(Theme(box=:HEAVY))
Open these only when needed:
references/color-names.mdreferences/theme-fields.md
Renderables
panel = Panel("body"; title="Title", width=50)
Open these only when needed:
references/box-types.mdreferences/table-api.md
Layout
layout = Panel(width=20) * Panel(width=20)
For the expression DSL and Compositor, open:
references/compositor-dsl.md
Utilities
using Term.Progress
pbar = ProgressBar(; columns=:default)
job = addjob!(pbar; N=10, description="Work")
For column presets and custom columns, open:
references/progress-columns.md
Interactive Apps
using Term.LiveWidgets
app = App(TextWidget("Hello"; as_panel=true))
play(app)
Open these only when needed:
references/app-examples.mdreferences/widget-api.md
Notes
- Use
frame(app)to preview a widget layout without entering the interactive loop. - Keep
SKILL.mdsmall. Read the topic-specific reference file instead of loading
everything at once.
- For package workflows and tests around Term.jl code, see
julia-package-dev
and julia-tests.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Krastanov
- Source: Krastanov/JuliaLLMAgentSkills
- License: Unlicense
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.