Skip to content
Skillv1.0.0

outputs

A task management SaaS app.

by imsanchez(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from imsanchez/agents-md-skill (agents-md-workspace/iteration-5/update-existing-with-gotchas/without_skill/outputs/AGENTS.md). Install upstream with npx skills add imsanchez/agents-md-skill --skill outputs. Copyright stays with the author.

Taskflow

A task management SaaS app.

Architecture

  • src/routes/ — Express route handlers
  • src/models/ — Prisma models and queries
  • src/services/ — Business logic layer

Tech stack

TypeScript, Express, Prisma (PostgreSQL), Redis, Vitest

Development

Build

npm run build

Test

npm test

  • Always call redis.quit() in test teardown (e.g. afterAll) — the Redis connection pool from src/services/cache.ts leaks open handles if not explicitly closed, causing vitest to hang indefinitely after tests pass

Database

  • The task_assignments table has a PostgreSQL trigger that syncs rows to search_index. Direct SQL inserts/updates bypass this trigger — always use Prisma to write to task_assignments so the search index stays consistent

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/imsanchez-agents-md-skill-outputs/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

imsanchez-agents-md-skill-outputs.ocm.jsonjson
{
  "ocm": "1",
  "id": "imsanchez-agents-md-skill-outputs",
  "kind": "skill",
  "name": "outputs",
  "description": "A task management SaaS app.",
  "publisher": "imsanchez",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "github-agents"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "A task management SaaS app."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github-agents",
      "repository": "https://github.com/imsanchez/agents-md-skill",
      "path": "agents-md-workspace/iteration-5/update-existing-with-gotchas/without_skill/outputs/AGENTS.md",
      "ref": "b3023b5adfe19bed91defcce0f92f0b38d0f7a69",
      "url": "https://github.com/imsanchez/agents-md-skill/blob/b3023b5adfe19bed91defcce0f92f0b38d0f7a69/agents-md-workspace/iteration-5/update-existing-with-gotchas/without_skill/outputs/AGENTS.md",
      "key": "imsanchez/agents-md-skill/agents-md-workspace/iteration-5/update-existing-with-gotchas/without_skill/outputs/AGENTS.md"
    }
  },
  "instructions": "# Taskflow\n\nA task management SaaS app.\n\n## Architecture\n\n- `src/routes/` — Express route handlers\n- `src/models/` — Prisma models and queries\n- `src/services/` — Business logic layer\n\n## Tech stack\n\nTypeScript, Express, Prisma (PostgreSQL), Redis, Vitest\n\n## Development\n\n### Build\nnpm run build\n\n### Test\nnpm test\n\n- Always call `redis.quit()` in test teardown (e.g. `afterAll`) — the Redis\n  connection pool from `src/services/cache.ts` leaks open handles if not\n  explicitly closed, causing vitest to hang indefinitely after tests pass\n\n## Database\n\n- The `task_assignments` table has a PostgreSQ",
  "cost": {
    "context_tokens": 195
  }
}

Fetch it by URL: GET /api/v1/registry/imsanchez-agents-md-skill-outputs/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.

outputs - Skill - OpenSmartRoute