wordeck/app-manifest.json
Till JS 2ee706bab1
Some checks are pending
CI / validate (push) Waiting to run
fix(manifest): base_url auf api.wordeck.com — wordeck.com ist Web, hat kein /healthz
Vor dem Rebrand zeigte base_url auf cardecky.mana.how (war API+Web im
gleichen Container). Mit dem Switch wurde cardecky.mana.how zur 301-
Redirect-Stub, wordeck.com läuft als reines SvelteKit-Web — kein
/healthz, kein /api/v1/*. Damit liefen alle Manifest-Endpoints (health,
search, share/receive, tools, dsgvo) ins Leere.

Korrekt ist https://api.wordeck.com (Container kreisel… nein,
cards-api auf :3191, ingress in managarten cloudflared-config).
mana-share-Health-Cron sah dadurch wordeck als failed=1 — nach
Re-Registrierung mit korrektem base_url ist OK erwartet beim
nächsten Cron-Tick.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-20 16:54:44 +02:00

65 lines
2.1 KiB
JSON

{
"$schema": "https://pkg.mana.how/@mana/shared-share-protocol/0.1/manifest.json",
"schema_version": "0.1",
"id": "wordeck",
"name": "Wordeck",
"version": "1.0.0",
"homepage": "https://wordeck.com",
"icon": "https://wordeck.com/icon-512.png",
"description": "Spaced-repetition flashcards with FSRS scheduling — text-first, no images, no audio.",
"description_de": "Spaced Repetition, text-first. Nur Worte, keine Bilder, kein Audio.",
"ownership": { "kind": "verein" },
"tier_required": "beta",
"endpoints": {
"base_url": "https://api.wordeck.com",
"health": "/healthz",
"dsgvo_export": "/api/v1/dsgvo/export",
"search": "/api/v1/search",
"share_receive": "/api/v1/share/receive",
"tool_invoke": "/api/v1/tools/:name",
"deep_link_scheme": "wordeck://",
"link_patterns": [
{
"pattern": "card/(?<id>[a-z0-9_-]+)",
"template": "https://wordeck.com/c/{id}"
},
{
"pattern": "deck/(?<id>[a-z0-9_-]+)",
"template": "https://wordeck.com/d/{id}"
}
]
},
"shares": [{ "type": "mana/card", "schema_ref": "/payload-schemas/card.json" }],
"accepts": [
{ "type": "mana/quote", "handler": "create_card_from_quote" },
{ "type": "mana/link", "handler": "save_link_as_card" },
{ "type": "mana/text", "handler": "create_card_from_text" }
],
"tools": [
{
"name": "wordeck.create",
"description": "Erzeugt eine Lernkarte für den authentifizierten User.",
"input_schema": { "$ref": "/payload-schemas/create-card-input.json" },
"output_schema": { "$ref": "/payload-schemas/card.json" },
"auth": "user_token"
},
{
"name": "wordeck.search",
"description": "Sucht in den Lernkarten des authentifizierten Users.",
"input_schema": { "$ref": "/payload-schemas/search-input.json" },
"output_schema": { "$ref": "/payload-schemas/search-output.json" },
"auth": "user_token"
}
],
"search": {
"types": ["card", "deck"],
"languages": ["de", "en", "fr", "es", "it"],
"max_results": 30,
"timeout_ms": 3000
},
"data": {
"personal_data_categories": ["card_content", "review_history"],
"encrypted_at_rest": false,
"storage_location": "EU"
}
}