Use current setup flow in ArchiveBox skill
Some checks are pending
CI / Linters (push) Waiting to run
CI / Install and CLI platform compatibility (push) Waiting to run
CI / Discovered test matrix (push) Waiting to run
CI / Documentation and root tests (push) Waiting to run
CI / CodeQL (push) Waiting to run
CI / Tested Python artifacts (push) Waiting to run
CI / Tested Docker images (push) Waiting to run
CI / All required CI lanes (push) Blocked by required conditions
Deploy Publicsite to GitHub Pages / deploy (push) Waiting to run

This commit is contained in:
Nick Sweeting 2026-08-13 08:05:54 -07:00
parent caf8c6be0b
commit 05c7821286
2 changed files with 10 additions and 8 deletions

View File

@ -66,8 +66,8 @@ version = 2
"7d33d72cc96df65b-1" = "run"
# skills/archivebox/SKILL.md
"2695777473e3a217-2" = "run"
"b894a7c4f93e4e92-2" = "run"
"ac2c1555d3b9cd8f-1" = "run"
"6b5798897504b1c8-1" = "run"
"46fe9d81940ea385-1" = "run"
"396490664ce459e9-2" = "run"
@ -273,8 +273,8 @@ version = 2
"aebc15190116f5cd-1" = "collection"
"0b307d4f1033723f-1" = "collection"
"7d33d72cc96df65b-1" = "collection"
"2695777473e3a217-2" = "project"
"b894a7c4f93e4e92-2" = "system"
"ac2c1555d3b9cd8f-1" = "project"
"6b5798897504b1c8-1" = "system"
"46fe9d81940ea385-1" = "collection"
"396490664ce459e9-2" = "project"
"201988374bff6d14-1" = "collection"
@ -352,8 +352,8 @@ version = 2
"aebc15190116f5cd-1" = "ubuntu"
"0b307d4f1033723f-1" = "ubuntu"
"7d33d72cc96df65b-1" = "ubuntu"
"2695777473e3a217-2" = "ubuntu"
"b894a7c4f93e4e92-2" = "ubuntu"
"ac2c1555d3b9cd8f-1" = "ubuntu"
"6b5798897504b1c8-1" = "ubuntu"
"46fe9d81940ea385-1" = "ubuntu"
"396490664ce459e9-2" = "ubuntu"
"201988374bff6d14-1" = "ubuntu"

View File

@ -25,7 +25,8 @@ ArchiveBox is the full self-hosted web archiving app. Use this skill for collect
uv sync --dev --all-extras
mkdir -p data
cd data
uv run --project .. archivebox init --install
uv run --project .. archivebox init
uv run --project .. archivebox install
```
## User-Facing Setup
@ -36,7 +37,8 @@ Recommended CLI install:
uv tool install --python 3.13 --prerelease allow --upgrade 'git+https://github.com/ArchiveBox/ArchiveBox.git@dev'
mkdir -p ~/archivebox/data
cd ~/archivebox/data
archivebox init --install
archivebox init
archivebox install
archivebox add --plugins=parse_txt_urls 'https://example.com/'
```