AgentSkillsCN

Labnote

实验笔记

SKILL.md

labnote

Description

Create and publish a lab note.

Purpose

Standardise how lab notes are written and deployed.

Workspace

Currently, workspace is located under /root/nanobandit-site

Procedure

  1. Create a new markdown file under src/lab-notes/ using the date-based filename convention.
  2. Add valid front matter:
    • title
    • date
    • tags (must include lab-note)
    • layout: layouts/base.njk

Example:

code
---
title: "Build in Public: One-Command Deploy Script"
date: 2026-02-06
layout: layouts/base.njk
tags: lab-note
---
  1. Write the lab note content.
  2. Save the file.
  3. Deploy the site by running:
    sh
    cd /root/nanobandit-site && ./deploy.sh "publish lab note"
    

Notes

  • Assumes Eleventy site and deploy script are already configured.
  • Does not validate output or deployment success.