Initial commit establishing core-agent repository with: - Claude Code plugin hooks (safety checks, auto-formatting, context preservation) - Collection skills for blockchain research archival (claude-cowork/) - CLAUDE.md documenting repository structure and development patterns Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
45 lines
1,004 B
JSON
45 lines
1,004 B
JSON
{
|
|
"version": "1.0.0",
|
|
"hooks": {
|
|
"on_url_found": [
|
|
{
|
|
"name": "whitepaper-collector",
|
|
"pattern": "\\.pdf$",
|
|
"handler": "./collect-whitepaper.sh",
|
|
"priority": 10,
|
|
"enabled": true
|
|
},
|
|
{
|
|
"name": "whitepaper-iacr",
|
|
"pattern": "eprint\\.iacr\\.org",
|
|
"handler": "./collect-whitepaper.sh",
|
|
"priority": 10,
|
|
"enabled": true
|
|
},
|
|
{
|
|
"name": "whitepaper-arxiv",
|
|
"pattern": "arxiv\\.org",
|
|
"handler": "./collect-whitepaper.sh",
|
|
"priority": 10,
|
|
"enabled": true
|
|
}
|
|
],
|
|
"on_file_collected": [
|
|
{
|
|
"name": "pdf-metadata",
|
|
"pattern": "\\.pdf$",
|
|
"handler": "./extract-pdf-metadata.sh",
|
|
"priority": 5,
|
|
"enabled": false
|
|
}
|
|
],
|
|
"on_collection_complete": [
|
|
{
|
|
"name": "update-index",
|
|
"handler": "./update-index.sh",
|
|
"priority": 100,
|
|
"enabled": true
|
|
}
|
|
]
|
|
}
|
|
}
|