Enable LLMs to handle webhooks with plaintext files
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fill in package.json metadata

+12 -12
+3 -3
package.json
··· 1 1 { 2 2 "name": "lure", 3 3 "version": "1.0.0", 4 - "description": "", 5 - "keywords": [], 4 + "description": "Process webhook events into LLM-consumable prompts", 5 + "keywords": ["webhook", "llm", "prompt", "liquid", "template"], 6 6 "license": "ISC", 7 - "author": "", 7 + "author": "Graham Barber", 8 8 "type": "module", 9 9 "main": "index.js", 10 10 "scripts": {
+3 -3
packages/core/package.json
··· 1 1 { 2 2 "name": "@lure/core", 3 3 "version": "1.0.0", 4 - "description": "", 5 - "keywords": [], 4 + "description": "Core webhook processing logic for Lure — verification, Liquid templating, and queue management", 5 + "keywords": ["webhook", "llm", "prompt", "liquid", "template", "hmac", "verification"], 6 6 "license": "ISC", 7 - "author": "", 7 + "author": "Graham Barber", 8 8 "type": "module", 9 9 "main": "./dist/index.js", 10 10 "types": "./dist/index.d.ts",
+3 -3
packages/express/package.json
··· 1 1 { 2 2 "name": "@lure/express", 3 3 "version": "1.0.0", 4 - "description": "", 5 - "keywords": [], 4 + "description": "Express middleware adapter for Lure — process webhook events into LLM prompts", 5 + "keywords": ["webhook", "llm", "prompt", "express", "middleware"], 6 6 "license": "ISC", 7 - "author": "", 7 + "author": "Graham Barber", 8 8 "type": "module", 9 9 "main": "./dist/index.js", 10 10 "types": "./dist/index.d.ts",
+3 -3
packages/fetch/package.json
··· 1 1 { 2 2 "name": "@lure/fetch", 3 3 "version": "1.0.0", 4 - "description": "", 5 - "keywords": [], 4 + "description": "Fetch API adapter for Lure — process webhook events into LLM prompts with Deno, Bun, and Cloudflare Workers", 5 + "keywords": ["webhook", "llm", "prompt", "fetch", "deno", "bun", "cloudflare-workers"], 6 6 "license": "ISC", 7 - "author": "", 7 + "author": "Graham Barber", 8 8 "type": "module", 9 9 "main": "./dist/index.js", 10 10 "types": "./dist/index.d.ts",