Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add strikersam/autonomous-ai-agency --skill lr-schedule-advisorgit clone --depth 1 https://github.com/strikersam/autonomous-ai-agencyWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/lr-schedule-advisor)<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/lr-schedule-advisor"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/lr-schedule-advisor/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/lr-schedule-advisor"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/lr-schedule-advisor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01013 |
| Opus 5 | $0.00000 | $0.00507 |
| Sonnet 5 | $0.00000 | $0.00203 |
| Haiku 4.5 | $0.00000 | $0.00101 |
Grade A, and why
lr-schedule-advisor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: lr-schedule-advisor
Purpose
Advise on learning rate schedules for transformer/LLM training. One of the most under-documented aspects of building LLMs from scratch — the schedule matters as much as the peak LR value.
Trigger
Use when:
- Starting a new training run and unsure about LR settings
- Training is unstable and you suspect LR is the cause
- You want to compare schedule strategies (cosine, linear, constant+decay)
- Fine-tuning a pretrained model and need different LR guidance
Background (Why This Matters)
From practitioners who have built LLMs from scratch:
"The learning rate schedule is not a hyperparameter you tune once. It interacts with model size, batch size, sequence length, and even your tokenizer vocabulary size. Most tutorials give you a single number and move on."
Key insights:
- Warmup steps prevent early attention collapse — Q/K/V projections are random at init; high LR scrambles them before they can learn
- Peak LR scales with batch size — linear scaling rule: if you 2x batch size, 2x LR (approximately)
- Cosine decay outperforms linear for most transformer workloads
- The final LR floor matters — 10% of peak LR is a common floor; going to zero wastes compute
- Cooldown phase — last 10% of training at low LR stabilizes the model for inference
Usage
/lr-schedule-advisor [model_size] [batch_size] [total_steps] [--task pretrain|finetune|rlhf]
Output Format
=== LR Schedule Recommendation ===
Model Size: [params]
Batch Size: [tokens or samples]
Total Steps: [N]
Task: [pretrain|finetune|rlhf]
Recommended Schedule:
Peak LR: [value]
Warmup Steps: [N] ([%] of total)
Schedule Type: cosine
Floor LR: [value] ([%] of peak)
Cooldown Steps: [N]
Formula:
lr(step) = ...
Warnings:
- [any detected issues]
Schedule Formulas
Cosine with Warmup (Recommended for Pretraining)
def get_lr(step, warmup_steps, total_steps, max_lr, min_lr):
if step < warmup_steps:
# Linear warmup
return max_lr * (step / warmup_steps)
# Cosine decay
progress = (step - warmup_steps) / (total_steps - warmup_steps)
cosine_decay = 0.5 * (1 + math.cos(math.pi * progress))
return min_lr + (max_lr - min_lr) * cosine_decay
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 96 lines · 0 tokens per session scan A b7f7a1a2f02a
lr-schedule-advisor is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,013 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
guardrails-ai-setup
Guardrails AI validation framework setup for LLM applications. Implement input/output validation, safety checks, and structured output enforcement.
mem0-integration
Mem0 memory layer integration for AI agents. Implement persistent, semantic memory for long-term context retention and personalization.
vector-memory
HNSW vector search for pattern similarity retrieval and knowledge graph maintenance with PageRank scoring, community detection, and 3-tier memory management.
chain-of-thought-prompts
Chain-of-thought and step-by-step reasoning prompts for complex problem solving.
chroma-integration
Chroma local vector database setup and operations for development and production.
few-shot-example-gen
Few-shot example generation and optimization for improved LLM performance.