Skill From Notebook logo

Skill From Notebook

OrganizationPopular
GBSOSS
skill-from-notebook

Extract methodologies from documents or examples to create executable skills

Overview

PublisherGBSOSS
Repositoryskill-from-masters
Skill nameskill-from-notebook
Stars
1.6K
Forks
160
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by GBSOSS on GitHub. Read the source before you install it.

Installation

Install the Skill From Notebook AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/GBSOSS/skill-from-masters.git /tmp/skill-from-masters
mkdir -p .claude/skills
cp -r /tmp/skill-from-masters/skills/skill-from-notebook .claude/skills/skill-from-notebook
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Skill From Notebook in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Skill From Notebook on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Skill From Notebook is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Skill from Notebook

Extract actionable methodologies from learning materials (documents, articles, videos) or quality examples (blog posts, designs, code) to generate reusable Skills.

Core Philosophy: NotebookLM helps you understand. This skill helps you do.

When to Use

When users want to turn knowledge into executable skills:

  • "I just read this article about code review, help me create a skill from it"
  • "Here's a great technical blog post, extract the writing methodology"
  • "Turn this PDF guide into a skill I can reuse"
  • "Learn from this example and create a skill to produce similar output"

Supported Input Types

TypeHow to Process
Local filesPDF, Word, Markdown - Read directly
Web URLWebFetch to extract content
YouTubeUse yt-dlp for subtitles, Whisper if unavailable
NotebookLM linkBrowser automation to extract notes/summaries
Example/OutputReverse engineer the methodology

Step 0: Identify Input Type

Critical first step - Determine which processing path to use:

User Input
    ├─ Has teaching intent? ("how to", "steps", "guide")
    │   └─ YES → Path A: Methodology Document
    ├─ Is a finished work? (article, design, code, proposal)
    │   └─ YES → Path B: Example (Reverse Engineering)
    └─ Neither? → Tell user this content is not suitable

Path A indicators (Methodology Document):

  • Contains words like "how to", "steps", "method", "guide"
  • Has numbered lists or step sequences
  • Written with teaching intent
  • Describes "what to do"

Path B indicators (Example/Output):

  • Is a complete work/artifact
  • No teaching intent
  • Is "the thing itself" rather than "how to make the thing"
  • Examples: a well-written blog post, a polished proposal, a code project

Path A: Extract from Methodology Document

A1: Validate Document Suitability

Check if the document is suitable for skill generation (must meet at least 2):

  • Has clear goal/outcome
  • Has repeatable steps/process
  • Has quality criteria
  • Has context/scenario description

If not suitable: Tell user honestly and explain why.

A2: Identify Skill Type

TypeCharacteristicsExamples
How-toClear step sequence, input→outputDeploy Docker, Configure CI/CD
DecisionConditions, trade-offs, choicesChoose database, Select framework
FrameworkMental model, analysis dimensionsSWOT, 5W1H, First Principles
ChecklistVerification list, pass/fail criteriaCode review checklist, Launch checklist

A3: Extract Structure by Type

For How-to:

  • Prerequisites
  • Step sequence (with expected output per step)
  • Final expected result
  • Common errors

For Decision:

  • Decision factors
  • Options with pros/cons
  • Decision tree/flowchart
  • Recommended default

For Framework:

  • Core concepts
  • Analysis dimensions
  • Application method
  • Limitations

For Checklist:

  • Check items with criteria
  • Priority levels
  • Commonly missed items

A4: Generate Skill

Use this template:

markdown
## Applicable Scenarios
[When to use this skill]

## Prerequisites
- [What's needed before starting]

## Steps
1. [Step 1] - [Expected outcome]
2. [Step 2] - [Expected outcome]
...

## Quality Checkpoints
- [ ] [Checkpoint 1]
- [ ] [Checkpoint 2]

## Common Pitfalls
- [Pitfall 1]: [How to avoid]

## Source
- Document: [name/URL]
- Extracted: [timestamp]

Path B: Reverse Engineer from Example

When input is a finished work (not a tutorial), reverse engineer the methodology.

B1: Identify Output Type

What kind of artifact is this?

  • Technical blog post
  • Product proposal/PRD
  • Academic paper
  • Code architecture
  • Design document
  • Other: [specify]

B2: Analyze Structure

Break down the example:

Structure Analysis:
├── [Part 1]: [Function] - [Proportion %]
├── [Part 2]: [Function] - [Proportion %]
├── [Part 3]: [Function] - [Proportion %]
└── [Part N]: [Function] - [Proportion %]

Questions to answer:

  • How many parts does it have?
  • What's the function of each part?
  • What's the order and proportion?

B3: Extract Quality Characteristics

What makes this example good?

DimensionQuestions
StructureHow is content organized?
StyleTone, word choice, expression?
TechniqueWhat methods make it effective?
LogicHow does information flow?
DetailsSmall but important touches?

B4: Reverse Engineer the Process

Deduce: To create this output, what steps are needed?

markdown
## Deduced Production Steps
1. [Step 1]: [What to do] - [Key point]
2. [Step 2]: [What to do] - [Key point]
...

## Key Decisions
- [Decision 1]: [Options] - [This example chose X because...]

## Reusable Techniques
- [Technique 1]: [How to apply]
- [Technique 2]: [How to apply]

B5: Generate Skill

Use this template for reverse-engineered skills:

markdown
## Output Type
[What kind of artifact this produces]

## Applicable Scenarios
[When to create this type of output]

## Structure Template
1. [Part 1]: [Function] - [~X%]
2. [Part 2]: [Function] - [~X%]
...

## Quality Characteristics (Learned from Example)
- [Characteristic 1]: [How it manifests]
- [Characteristic 2]: [How it manifests]

## Production Steps
1. [Step 1]: [What to do] - [Tips]
2. [Step 2]: [What to do] - [Tips]
...

## Checklist
- [ ] [Check item 1]
- [ ] [Check item 2]

## Reference Example
- Source: [name/URL]
- Analyzed: [timestamp]

Example: Path A (Methodology Document)

User: "Extract a skill from this article about writing good commit messages"

Process:

  1. Read the article
  2. Identify: This is a How-to type (has steps, teaching intent)
  3. Extract:
    • Goal: Write clear, useful commit messages
    • Steps: Use conventional format, separate subject/body, etc.
    • Quality criteria: Subject < 50 chars, imperative mood, etc.
  4. Generate skill with steps and checklist

Example: Path B (Reverse Engineering)

User: "Here's a great technical blog post. Learn from it and create a skill for writing similar posts."

Process:

  1. Identify: This is an example (finished work, no teaching intent)
  2. Analyze structure:
    ├── Hook: Real pain point (2-3 sentences)
    ├── Problem: 3 sentences on the core issue
    ├── Solution: Conclusion first, then details
    ├── Code: Each snippet < 20 lines, with comments
    ├── Pitfalls: 3 common errors
    └── Summary: One-line takeaway
  3. Extract quality characteristics:
    • Title = specific tech + problem solved
    • One idea per paragraph
    • Code:text ratio ~40:60
    • Personal anecdotes for credibility
  4. Reverse engineer steps:
    • Start with a real problem you solved
    • Write the solution first, then the setup
    • Add code samples progressively
    • etc.
  5. Generate skill: "How to Write a Technical Blog Post"

Advanced: Multi-Example Learning

When user provides multiple examples of the same type:

Example A ──┐
Example B ──┼──> Extract commonalities ──> Core methodology
Example C ──┘           │
                  Analyze differences ──> Style variants / Optional techniques

This produces more robust, generalizable skills.


Important Notes

  1. Always validate first - Not all content is suitable for skill extraction
  2. Identify the path early - Methodology doc vs Example require different approaches
  3. Be specific - Vague skills are useless; include concrete steps and criteria
  4. Preserve the source - Always credit where the knowledge came from
  5. Ask for clarification - If unsure about user intent, ask before proceeding
  6. Quality over speed - Take time to truly understand the content

What This Skill is NOT

  • NOT a summarizer (that's NotebookLM's job)
  • NOT a document converter
  • It's about extracting actionable methodology that can be repeatedly executed

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Skill From Notebook AI skill do?

Extract methodologies from documents or examples to create executable skills

Why use Skill From Notebook on TypingMind?

Because you install it once and use it with any model. Skill From Notebook is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Skill From Notebook in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/GBSOSS/skill-from-masters/tree/main/skills/skill-from-notebook. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Skill From Notebook?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Skill From Notebook?

As many as you like. As long as a model supports skills, you can use Skill From Notebook with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Skill From Notebook AI skill free?

Yes. It is published on GitHub by GBSOSS under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇