Back to list
Mearman

wayback-submit

by Mearman

Plugin marketplace distributing extensions that add skills, commands, hooks and custom agents to the code environment.

2🍴 0📅 Jan 23, 2026

SKILL.md


name: wayback-submit description: Submit a URL to the Wayback Machine for archiving. Use when the user wants to archive a webpage, save a page to the Internet Archive, preserve a URL, or create a snapshot.

Submit URL to Wayback Machine

Submit a URL to the Internet Archive's Wayback Machine using the Save Page Now 2 (SPN2) API.

Usage

npx tsx scripts/submit.ts <url> [options]

Arguments

ArgumentRequiredDescription
urlYesURL to archive

Options

OptionDescription
--no-rawInclude Wayback toolbar in archived URL
--key=ACCESS:SECRETUse API authentication (get keys at https://archive.org/account/s3.php)

Output

When submission succeeds:

✓ Archive submitted successfully
  Job ID: spn2-abc123...
  Check status: https://web.archive.org/save/status/spn2-abc123...

  Waiting for capture...
  ✓ Capture complete
  URL: https://web.archive.org/web/20240115123456id_/https://example.com

Script Execution (Preferred)

npx tsx scripts/submit.ts <url> [options]

Options:

  • --no-raw - Include Wayback toolbar in archived URL
  • --key=ACCESS:SECRET - Use API authentication

Run from the wayback plugin directory: ~/.claude/plugins/cache/wayback/

Authentication

Get API keys at https://archive.org/account/s3.php (requires free account).

Header format:

Authorization: LOW {access_key}:{secret_key}

Rate Limits

LimitAuthenticatedAnonymous
Concurrent captures126
Daily captures100,0004,000
Per-URL daily1010
Capture timeout50s page load, 2min total

SPN2 API

Endpoint: POST https://web.archive.org/save

Basic Request

curl -X POST https://web.archive.org/save \
  -H "Accept: application/json" \
  -H "Authorization: LOW myaccesskey:mysecret" \
  -d "url=https://example.com"

Parameters

ParameterDescription
urlURL to archive (required)
capture_all=1Capture even 4xx/5xx error pages
capture_outlinks=1Also archive linked pages (first 100)
capture_screenshot=1Generate PNG screenshot
delay_wb_availability=1Delay indexing ~12 hours (reduces load)
skip_first_archive=1Skip check if URL was already archived
if_not_archived_within=30dSkip if archived within timeframe (e.g., 30d, 1h)
js_behavior_timeout=10Run JavaScript for N seconds (max 30)
force_get=1Use simple HTTP GET instead of browser
capture_cookie=name=valueInclude custom cookie in request
target_username / target_passwordLogin credentials for protected pages

Response

Success:

{
  "url": "https://example.com",
  "job_id": "spn2-abc123..."
}

Check Job Status

curl "https://web.archive.org/save/status/{job_id}" \
  -H "Authorization: LOW myaccesskey:mysecret"

Pending:

{"status": "pending", "resources": []}

Success:

{
  "status": "success",
  "timestamp": "20240115123456",
  "original_url": "https://example.com",
  "resources": ["https://example.com/style.css"],
  "outlinks": {},
  "screenshot": "https://web.archive.org/web/.../screenshot.png"
}

Error codes: error:blocked-url, error:too-many-daily-captures, error:soft-time-limit-exceeded, error:invalid-host-resolution

Check Your Quota

curl "https://web.archive.org/save/status/user" \
  -H "Authorization: LOW myaccesskey:mysecret"

Returns: {"available": 99950, "processing": 2}

Simple Method (No Auth)

For quick one-off saves without authentication:

https://web.archive.org/save/{URL}

Lower rate limits apply (6 concurrent, 4k daily).

  1. Use delay_wb_availability=1 for batch jobs (reduces server load)
  2. Check job status for captures that take time (JS-heavy pages)
  3. Use capture_screenshot=1 for visual verification

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon