CtrlK
BlogDocsLog inGet started
Tessl Logo

pantheon-ai/research

Research toolkit for triaging academic papers and GitHub projects. Triage papers and tools, reproduce benchmark claims, search Google Scholar, Semantic Scholar, PubMed, or Sci-Hub, and extract structured data from scientific PDFs.

92

Quality

92%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Critical

Do not install without reviewing

Overview
Quality
Evals
Security
Files

analysis-tool.schema.jsontriage-tool/assets/schemas/

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "analysis-tool",
  "description": "Frontmatter schema for ANALYSIS-<slug>.md files in the research repo",
  "type": "object",
  "required": ["title", "date", "type", "tool", "source"],
  "additionalProperties": true,
  "properties": {
    "title": {
      "type": "string",
      "minLength": 1
    },
    "date": {
      "type": "string",
      "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
    },
    "type": {
      "type": "string",
      "const": "analysis"
    },
    "tool": {
      "type": "object",
      "required": ["name", "repo"],
      "properties": {
        "name": {
          "type": "string",
          "minLength": 1
        },
        "repo": {
          "type": "string",
          "pattern": "^https?://"
        },
        "version": {
          "type": "string"
        },
        "language": {
          "type": "string"
        },
        "license": {
          "type": "string"
        }
      }
    },
    "source": {
      "type": "array",
      "minItems": 1,
      "items": { "type": "string" }
    },
    "links": {
      "type": "array",
      "items": { "type": "string" }
    }
  }
}

tile.json