Skip to content
Open
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
22 changes: 22 additions & 0 deletions .github/workflows/skill-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Tessl Skill Review β€” runs on PRs that change any SKILL.md; posts scores as one PR comment.
# Docs: https://github.com/tesslio/skill-review
name: Tessl Skill Review

on:
pull_request:
branches: [main]
paths:
- "**/SKILL.md"

jobs:
review:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: tesslio/skill-review@main
# Optional quality gate (off by default β€” do not enable unless user asked):
# with:
# fail-threshold: 70
40 changes: 10 additions & 30 deletions SKILL.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
---
name: import-web-markdown-with-gather
description: >-
Import web pages as clean markdown using the local gather CLI. Use when the
user asks to fetch a URL as markdown, clip a page into notes, archive readable
article text, or convert web content into markdown for context.
description: "Import web pages as clean markdown using the local gather CLI. Use when the user asks to fetch a URL as markdown, clip a page into notes, archive readable article text, or convert web content into markdown for context."
user-invocable: true
triggers:
- "fetch URL as markdown"
- "clip page"
- "archive article"
- "convert web to markdown"
- "import webpage"
- "grab page content"
---

# Import Web Markdown With Gather
Expand All @@ -20,12 +25,6 @@ Run gather with these settings unless the user asks otherwise:
gather --metadata-yaml --inline-links --no-paragraph-links "<url>"
```

Rationale:

- `--metadata-yaml`: Adds title/date/source in front matter for downstream indexing.
- `--inline-links`: Keeps links close to text for RAG/chunk readability.
- `--no-paragraph-links`: Avoids repeated reference blocks after each paragraph.

## Required Workflow

1. Validate input:
Expand Down Expand Up @@ -57,12 +56,7 @@ Rationale:

## Output Contract

When successful, return:

- `url`: original URL
- `title`: extracted title when available
- `markdown`: full markdown body
- `used_fallback`: `true` if `--no-readability` or `--html` path was used
Return `url`, `title`, `markdown`, and `used_fallback` (true if `--no-readability` or `--html` path was used).

## Safety And Limits

Expand All @@ -71,20 +65,6 @@ When successful, return:
- Preserve the original URL in output metadata.
- If output is empty or too short, report a partial extraction warning.

## Examples

Basic import:

```bash
gather --metadata-yaml --inline-links --no-paragraph-links "https://example.com/article"
```

Fallback when readability extraction fails:

```bash
gather --metadata-yaml --inline-links --no-paragraph-links --no-readability "https://example.com/article"
```

## Optional Variants

- Add title only:
Expand Down