• bitcoinBitcoin(BTC)$60,443.00-3.46%
  • ethereumEthereum(ETH)$1,625.69-2.22%
  • tetherTether(USDT)$1.00-0.02%
  • binancecoinBNB(BNB)$560.71-2.54%
  • usd-coinUSDC(USDC)$1.000.01%
  • rippleXRP(XRP)$1.06-3.57%
  • solanaSolana(SOL)$67.51-2.26%
  • tronTRON(TRX)$0.326952-0.93%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.03-0.12%
  • HyperliquidHyperliquid(HYPE)$60.26-4.04%
  • dogecoinDogecoin(DOGE)$0.074957-5.13%
  • USDSUSDS(USDS)$1.00-0.02%
  • RainRain(RAIN)$0.0158941.08%
  • leo-tokenLEO Token(LEO)$9.48-0.68%
  • zcashZcash(ZEC)$405.86-3.29%
  • stellarStellar(XLM)$0.185855-3.98%
  • moneroMonero(XMR)$322.111.68%
  • LABLAB(LAB)$18.6524.61%
  • CantonCanton(CC)$0.150412-1.05%
  • whitebitWhiteBIT Coin(WBT)$49.17-3.63%
  • chainlinkChainlink(LINK)$7.40-2.94%
  • cardanoCardano(ADA)$0.143969-4.81%
  • USD1USD1(USD1)$1.00-0.03%
  • daiDai(DAI)$1.000.00%
  • Ethena USDeEthena USDe(USDE)$1.00-0.05%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.582.25%
  • bitcoin-cashBitcoin Cash(BCH)$188.72-1.16%
  • MemeCoreMemeCore(M)$2.82-1.59%
  • hedera-hashgraphHedera(HBAR)$0.074260-4.65%
  • litecoinLitecoin(LTC)$40.91-2.78%
  • Circle USYCCircle USYC(USYC)$1.130.00%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.07%
  • suiSui(SUI)$0.68-4.10%
  • avalanche-2Avalanche(AVAX)$6.26-1.83%
  • shiba-inuShiba Inu(SHIB)$0.000004-3.57%
  • crypto-com-chainCronos(CRO)$0.055552-2.20%
  • nearNEAR Protocol(NEAR)$1.92-3.47%
  • tether-goldTether Gold(XAUT)$3,994.30-3.03%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.14-0.09%
  • BittensorBittensor(TAO)$215.77-0.32%
  • worldcoin-wldWorldcoin(WLD)$0.53-4.43%
  • pax-goldPAX Gold(PAXG)$3,996.07-3.09%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.056591-2.17%
  • uniswapUniswap(UNI)$2.83-2.78%
  • mantleMantle(MNT)$0.50-2.31%
  • AsterAster(ASTER)$0.62-0.91%
  • Ripple USDRipple USD(RLUSD)$1.000.02%
  • okbOKB(OKB)$75.26-1.87%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Nous Research Adds /learn to Hermes Agent’s Skills System, Capturing Workflows as Slash Commands Without Hand-Writing SKILL.md

June 24, 2026
in AI & Technology
Reading Time: 15 mins read
A A
Nous Research Adds /learn to Hermes Agent’s Skills System, Capturing Workflows as Slash Commands Without Hand-Writing SKILL.md
ShareShareShareShareShare

Nous Research has expanded the Skills System inside Hermes Agent, its open-source self-improving agent. The new addition is /learn, a command that writes a reusable skill for you. Point it at a document page, a local SDK, a past conversation, or pasted notes. The live agent gathers the material, then authors a SKILL.md on your behalf.

Hermes Agent can now /learn from anything: feed it directories of any source material (code, API docs, manuals, PDFs, configs) and it distills a verifiable reusable skill pic.twitter.com/oRznwCRF3E

— Nous Research (@NousResearch) June 23, 2026

Hermes Skills System

Skills are on-demand knowledge documents the agent loads when needed. Each one is a folder containing a SKILL.md file with instructions. They follow a progressive disclosure pattern to keep token usage low. The format is compatible with the agentskills.io open standard.

All skills live in ~/.hermes/skills/, the single source of truth. On a fresh install, bundled skills are copied from the repo. Hub-installed and agent-created skills land there too. Every installed skill becomes a slash command automatically. Running /plan or /axolotl loads that skill’s instructions into the turn.

Think of a skill as a reference document the agent reads only when relevant. Memory, by contrast, holds small durable facts that should always stay in context.

How /learn Works

/learn removes the hand-writing step. You describe a source, and the agent does the sourcing with tools it already has. It reads local directories with read_file and search_files. It fetches online docs with web_extract. It can also capture a workflow you just walked it through.

# A local SDK or doc directory
/learn the REST client in ~/projects/acme-sdk, focus on auth + pagination

# An online doc page
/learn https://docs.example.com/api/quickstart

# The workflow you just completed in this conversation
/learn how I just deployed the staging server

# Pasted notes or a described procedure
/learn filing an expense: open the portal, New > Expense, attach receipt, submit

The agent then authors a skill that follows the house authoring standards. That means a description under 60 characters, the standard section order, and Hermes-tool framing. It does not invent commands that do not exist.

There is no separate ingestion engine. /learn builds a standards-guided prompt and hands it to the agent as a normal turn. So it works the same in the CLI, the messaging gateway, the TUI, and the dashboard. It also works on any terminal backend, whether local, Docker, or remote. The dashboard adds a Learn a skill button with a directory field, a URL field, and a text box.

The agent saves the result with the skill_manage tool. If you have the write-approval gate on, that approval step still applies.

Why Skills Stay Cheap

Skills load in three levels, so the agent pays only for what it uses.

Level Call Returns Approx. cost
0 skills_list() Names, descriptions, categories ~3k tokens
1 skill_view(name) Full content plus metadata Varies
2 skill_view(name, path) A specific reference file Varies

The agent sees a compact index at all times. It loads full skill content only when a task needs it. This keeps a large skill library from flooding the context window.

Four Ways to Create a Skill

/learn is one path among several. The right choice depends on who authors the skill and where the source lives.

Method Who authors Source input Review gate Best for
Hand-write SKILL.md You Your own knowledge None Full control over wording
/learn The live agent Dir, URL, conversation, notes skill_manage gate Turning existing material into a skill fast
skill_manage (auto) The agent itself A workflow it just solved write_approval gate Capturing procedural memory after hard tasks
Skills Hub install A third party Registry or GitHub repo Security scanner Reusing community or vendor skills

Agent-created skills are the agent’s procedural memory. The agent may save an approach after a complex task of five or more tool calls. It also saves when it hit a dead end and found the working path. By default, write_approval is false, so the agent writes freely. Set it to true to stage every write for review under ~/.hermes/pending/skills/.

Use Cases With Examples

  • Onboarding an internal API: Run /learn on your private docs URL. The agent produces a skill covering auth, pagination, and common calls. New teammates then invoke it as a slash command.
  • Capturing a deploy runbook: Walk the agent through one staging deploy. Then run /learn how I just deployed the staging server. The procedure becomes repeatable across the CLI and chat platforms.
  • Grouping a recurring task: Use a skill bundle to load several skills at once. One slash command then pulls in review, test, and PR skills together.
# ~/.hermes/skill-bundles/backend-dev.yaml
name: backend-dev
description: Backend feature work — review, test, PR workflow.
skills:
  - github-code-review
  - test-driven-development
  - github-pr-workflow
instruction: |
  Always start by writing failing tests, then implement.

A Look at the SKILL.md Format

A skill is mostly a markdown file with YAML frontmatter. The body follows a fixed section order. /learn targets this exact shape so output stays consistent.

---
name: my-skill
description: Brief description of what this skill does
version: 1.0.0
platforms: [macos, linux]     # Optional — restrict to specific OS
metadata:
  hermes:
    tags: [python, automation]
    category: devops
---

# Skill Title

## When to Use
Trigger conditions for this skill.

## Procedure
1. Step one
2. Step two

## Pitfalls
- Known failure modes and fixes

## Verification
How to confirm it worked.

The platforms field can hide a skill on incompatible operating systems. Conditional fields can also show a skill only when certain toolsets are present or absent.

Interactive Explainer

Key Takeaways

  • Hermes Agent’s new /learn command authors a reusable skill from a directory, URL, conversation, or pasted notes — no hand-writing needed.
  • The live agent sources material with its own tools (read_file, search_files, web_extract), then writes a standards-compliant SKILL.md.
  • There is no separate ingestion engine, so /learn works the same across the CLI, TUI, messaging gateway, and dashboard.
  • Progressive disclosure keeps skills cheap: a ~3k-token index loads first, and full content loads only when a task needs it.
  • Skills save via skill_manage, so the write_approval gate can stage every write for review before it lands.

Sources


YOU MAY ALSO LIKE

8BitDo Launches The Arcade Controller Pro For Hardcore Fighting Game Fans

A Modest Update For The Gemini Era


Credit: Source link

ShareTweetSendSharePin

Related Posts

8BitDo Launches The Arcade Controller Pro For Hardcore Fighting Game Fans
AI & Technology

8BitDo Launches The Arcade Controller Pro For Hardcore Fighting Game Fans

June 24, 2026
A Modest Update For The Gemini Era
AI & Technology

A Modest Update For The Gemini Era

June 24, 2026
Using Graphify and NetworkX to Map Python Codebase Structure with God Nodes, Communities, and Architecture Visualizations
AI & Technology

Using Graphify and NetworkX to Map Python Codebase Structure with God Nodes, Communities, and Architecture Visualizations

June 24, 2026
YouTube Settles Early Test Case Over Social Media Harm To Children
AI & Technology

YouTube Settles Early Test Case Over Social Media Harm To Children

June 24, 2026
Next Post
Using Graphify and NetworkX to Map Python Codebase Structure with God Nodes, Communities, and Architecture Visualizations

Using Graphify and NetworkX to Map Python Codebase Structure with God Nodes, Communities, and Architecture Visualizations

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
2026 U.S. Open leaderboard: Live updates, coverage, scores and standings for Round 1 at Shinnecock Hills – CBS Sports

2026 U.S. Open leaderboard: Live updates, coverage, scores and standings for Round 1 at Shinnecock Hills – CBS Sports

June 18, 2026
Prime Day is here: We found 65+ deals to shop from Apple, Lego, Sony, and more – Mashable

Prime Day is here: We found 65+ deals to shop from Apple, Lego, Sony, and more – Mashable

June 24, 2026
Expeditors International of Washington, Inc. (EXPD) Discusses Incoterms and Strategies for Managing Risk and Costs in Global Supply Chains Transcript

Expeditors International of Washington, Inc. (EXPD) Discusses Incoterms and Strategies for Managing Risk and Costs in Global Supply Chains Transcript

June 18, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!