AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Unlicense Self-run

Julia Term

skill-krastanov-juliallmagentskills-julia-term · by Krastanov

Work with Term.jl for styled terminal output, renderables, layouts, progress bars, repr helpers, and interactive TUI apps. Use when building terminal interfaces or rich terminal output in Julia.

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add skill-krastanov-juliallmagentskills-julia-term

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-krastanov-juliallmagentskills-julia-term)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Julia Term? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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
  • Term covers markup, tprint, Panel, themes, repr, and markdown rendering.
  • Term.Layout covers stacking, alignment, grids, spacers, and compositors.
  • Term.Progress covers progress bars and custom progress columns.
  • Term.LiveWidgets covers App, 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.md
  • references/theme-fields.md

Renderables

panel = Panel("body"; title="Title", width=50)

Open these only when needed:

  • references/box-types.md
  • references/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.md
  • references/widget-api.md

Notes

  • Use frame(app) to preview a widget layout without entering the interactive loop.
  • Keep SKILL.md small. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.