Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version matches the `version` field in [`solx/Cargo.toml`](solx/Cargo.toml)
and in [`skills/sol-skill/SKILL.md`](skills/sol-skill/SKILL.md), and the git
tag, and a pushed `vX.Y.Z` tag builds and publishes the release.

## [Unreleased]
## [1.0.1] — 2026-06-15

Skill guidance for AI agents — framing/packaging changes, no new
commands (issue #36).
Expand Down
2 changes: 1 addition & 1 deletion docs/coverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ automated verification, and what's a known gap. The eval harness
requires manual orchestration today, so this document is updated by
hand before each release.

**Version:** v1.0.0 (see [`../CHANGELOG.md`](../CHANGELOG.md))
**Version:** v1.0.1 (see [`../CHANGELOG.md`](../CHANGELOG.md))
**Last verified:** the `solx` CLI is covered by its own crate suite
(`cargo test` in `solx/`: unit tests per module plus the end-to-end
`tests/cli.rs`, including a real-touch renewal test), which runs in CI.
Expand Down
2 changes: 1 addition & 1 deletion skills/sol-skill/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: sol-skill
version: 1.0.0
version: 1.0.1
description: Conventions and tooling for ASU's Sol supercomputer, built around the `solx` CLI. Use whenever a task is happening on Sol — the user mentions Sol or ASU Research Computing, or is clearly on their Sol account (a Sol /scratch path, an sbatch/interactive job, a login/compute node). It covers renewing /scratch files Sol has flagged for deletion (purge/inactivity warnings) via `solx keep` and where to store datasets and model caches; requesting and managing SLURM jobs (the `solx job` interactive-allocation lifecycle, sbatch for batch, GPU and partition/QOS choice, why a job is pending, fairshare-aware and time-aware job management); installing software without sudo (module load, uv for Python, tinytex for LaTeX); reaching a Sol compute-node service like Jupyter from a laptop browser; detecting login-vs-compute nodes and choosing where to run heavy I/O (the DTN, a compute node, or a batch job); and transferring data to and from Sol. Not for generic SLURM/HPC on other clusters (Phoenix, NERSC, …), cloud GPUs, or purely local-laptop tasks (local virtualenvs, local LaTeX, local file/timestamp cleanup).
license: MIT
---
Expand Down
2 changes: 1 addition & 1 deletion solx/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion solx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "solx"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
description = "CLI for ASU's Sol supercomputer."
license = "MIT"
Expand Down
Loading