Skip to main content
  1. About/

Contributing

·3 mins·

con/serve is a community knowledge base. If you know of a tool for archiving digital research artifacts that is not yet cataloged here, we welcome contributions.

Adding a New Tool Entry #

1. Choose the right section #

Place your tool page in the appropriate subdirectory under content/tools/:

SectionArtifact type
communications/Messaging platforms (Slack, Telegram, Matrix, email)
media/Video, audio, images
code-artifacts/Issues, PRs, discussions, wikis from code forges
cloud-storage/Cloud-hosted files (Google Drive, S3, Dropbox)
publications/Scholarly citations, PDFs, references
web/Web pages and sites
ai-sessions/AI coding sessions and conversations

If your tool does not fit any existing section, open an issue to discuss whether a new section is warranted.

2. Create the file #

Create a new markdown file in the appropriate section directory. Use a URL-friendly slug for the filename (e.g., my-tool.md).

3. Fill in the front matter #

Every tool page must include the following front matter:

---
title: "Tool Name"
date: 2026-02-12
description: "One-line description of what the tool does"
summary: "Brief summary for listing pages"
categories: ["Communications"]
tags: ["slack", "export", "json"]
media_types: ["slack"]
integrations: ["git-annex"]
ai_readiness: ["ai-ready"]
params:
  # URLs (required -- every tool must have at least repo + homepage + issues)
  repo: "https://github.com/org/repo"
  homepage: "https://tool.example.com"
  issues: "https://github.com/org/repo/issues"
  # URLs (optional but encouraged)
  discussions: "https://github.com/org/repo/discussions"
  docs: "https://tool.readthedocs.io"
  changelog: "https://github.com/org/repo/blob/main/CHANGELOG.md"
  # Metadata
  language: "Python"
  license: "MIT"
  maturity: "stable"
  last_verified: "2026-02"
---

4. Front matter field reference #

Required fields:

FieldDescription
titleHuman-readable tool name
dateDate the entry was created (YYYY-MM-DD)
descriptionOne-line description
summaryBrief summary for listing pages
categoriesOne of: Communications, Media, Code Artifacts, Cloud Storage, Publications, Web, AI Sessions
integrationsOne or more of: native-datalad, git-annex, git-only, external
ai_readinessOne or more of: ai-ready, ai-partial, ai-manual
params.repoSource code repository URL
params.homepageProject homepage or documentation URL (can be same as repo)
params.issuesBug tracker / issue tracker URL
params.languagePrimary programming language
params.licenseSPDX license identifier
params.maturityOne of: stable, beta, alpha, concept
params.last_verifiedWhen URLs and content were last verified (YYYY-MM)

Optional fields:

FieldDescription
tagsFree-form tags for discoverability
media_typesSpecific format or platform identifiers
params.discussionsForum, GitHub Discussions, mailing list, or chat URL
params.docsDedicated documentation site URL
params.changelogChangelog URL

5. Write the content #

Structure the page body with these sections (adapt as needed):

## Overview

What the tool does, who maintains it, and why it matters for archival.

## Installation

How to install the tool. Prefer package managers and reproducible methods.

## Usage with git-annex / DataLad

How to integrate the tool's output into a git-annex or DataLad repository.
Include concrete commands and examples.

## AI Readiness

What the output looks like from an LLM's perspective.
What processing (if any) is needed to make it consumable?

## Limitations

Known limitations, caveats, and workarounds.

## See Also

Links to related tools, upstream documentation, and relevant concepts pages.

6. Choosing taxonomy values #

Integration level (integrations field) – choose one or more of: native-datalad, git-annex, git-only, external. See Integration Levels for detailed definitions and examples.

AI readiness (ai_readiness field) – choose one or more of: ai-ready, ai-partial, ai-manual. See AI Readiness Levels for detailed definitions and examples.

When in doubt, a tool can have multiple values (e.g., a tool that produces both JSON metadata and video files might be ["ai-ready", "ai-manual"]).

7. Verify URLs #

All URLs in params are checked by CI. Before submitting, verify that:

  • repo points to an active, public repository
  • homepage resolves and contains relevant documentation
  • issues points to a working issue tracker
  • Any optional URLs also resolve correctly

8. Submit #

Open a pull request against the con/serve repository. The CI pipeline will validate front matter schema and check all URLs.