Reorganise as a marketplace with multiple focused plugins: - claude/code: Core development (hooks, scripts, data collection) - claude/review: Code review automation - claude/verify: Work verification - claude/qa: Quality assurance loops - claude/ci: CI/CD integration Structure: - .claude-plugin/marketplace.json lists all plugins - Each plugin has its own .claude-plugin/plugin.json - Commands namespaced: /code:*, /review:*, /qa:*, etc. Install individual plugins or all via marketplace: claude plugin add host-uk/core-agent claude plugin add host-uk/core-agent/claude/code Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
1.1 KiB
Bash
Executable file
38 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Hook: update-index.sh
|
|
# Called after collection completes to update indexes
|
|
|
|
WHITEPAPERS_DIR="${1:-./whitepapers}"
|
|
|
|
echo "[update-index] Updating whitepaper index..."
|
|
|
|
# Count papers in each category
|
|
for category in cryptonote lethean research uncategorized; do
|
|
dir="$WHITEPAPERS_DIR/$category"
|
|
if [ -d "$dir" ]; then
|
|
count=$(find "$dir" -name "*.pdf" 2>/dev/null | wc -l | tr -d ' ')
|
|
echo " $category: $count papers"
|
|
fi
|
|
done
|
|
|
|
# Update INDEX.md with collected papers
|
|
INDEX="$WHITEPAPERS_DIR/INDEX.md"
|
|
if [ -f "$INDEX" ]; then
|
|
# Add collected papers section if not exists
|
|
if ! grep -q "## Recently Collected" "$INDEX"; then
|
|
echo "" >> "$INDEX"
|
|
echo "## Recently Collected" >> "$INDEX"
|
|
echo "" >> "$INDEX"
|
|
echo "_Last updated: $(date +%Y-%m-%d)_" >> "$INDEX"
|
|
echo "" >> "$INDEX"
|
|
fi
|
|
fi
|
|
|
|
# Process pending jobs
|
|
PENDING="$WHITEPAPERS_DIR/.pending-jobs.txt"
|
|
if [ -f "$PENDING" ]; then
|
|
count=$(wc -l < "$PENDING" | tr -d ' ')
|
|
echo "[update-index] $count papers queued for collection"
|
|
fi
|
|
|
|
echo "[update-index] Done"
|