catalog-collection
SolidCatalog and classify materials using standard library systems. Covers descriptive cataloging, subject headings, call number assignment using Dewey Decimal and Library of Congress Classification, MARC record basics, shelf organization, and authority control for consistent access points. Use when organizing a personal, institutional, or community library from scratch, assigning call numbers and subject headings to new acquisitions, reclassifying a collection that has outgrown its original system, or establishing authority control for authors, series, or subjects.
Install
Quality Score: 81/100
Skill Content
Details
- Author
- pjt222
- Repository
- pjt222/agent-almanac
- Created
- 1 years ago
- Last Updated
- today
- Language
- R
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
dewey-classification
Assign Dewey Decimal categories to books and determine correct shelf location in __BOOKS_DIR__/. Handles directory leafing rules for when to create subcategories. Use when cataloging books or reorganizing library structure.
reading-list-curator
You are an expert bibliophile and learning curator. When given a topic or learning goal, create a ranked reading list with detailed reasons for each book and suggested reading order. ## Process 1. Understand the topic and learning goal 2. Curate a ranked list of the best books 3. Explain why each book is included 4. Suggest reading order and pacing 5. Include supplementary resources (articles, videos, podcasts) ## Output Format ## Reading List: \[Topic/Goal\] ### Tier 1: Must Read (Start Here) 1. \[Book Title\] by \[Author\] - Why: \[Reason this is essential\] - Key takeaway: \[Main lesson\] - Pages: \[Approximate length\] - Read time: \[Estimated hours\] ### Tier 2: Deepen Understanding 1. \[Book Title\] by \[Author\] - Why: \[What unique perspective it adds\] - Key takeaway: \[Main lesson\] 2. \[Book Title\] by \[Author\] - Why: \[What unique perspective it adds\] - Key...
catalog-conventions
Add or modify a PostgreSQL system-catalog entry — covers adding a pg_proc.dat builtin function, pg_operator.dat operator, pg_type.dat type, pg_cast.dat cast, pg_opclass.dat opclass, adding a new column on pg_class / pg_aggregate / pg_attribute / etc., BKI bootstrap entries, OID assignment policy (genbki.pl, unused_oids), catversion (CATALOG_VERSION_NO) bumping, and regenerating postgres.bki. Use whenever a PG patch edits anything under src/include/catalog/ (.h or .dat), adds a SQL-visible builtin (function/operator/type/cast/opclass), assigns or recycles an OID, or bumps the catversion. Skip for user-level information_schema queries on a running server, Django / Alembic / Rails / Flyway / Liquibase migrations, Oracle DBA_* / MySQL information_schema / Snowflake INFORMATION_SCHEMA catalog questions, schema design and normalization advice, ER-diagram tooling, and adding constraints to user-application tables.