Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e181b89ac0 | ||
|
|
48cdf05a25 | ||
|
|
a4e5e479d6 |
@@ -1,6 +1,2 @@
|
|||||||
// Baseline arm: no skill, with a one-line system prompt so the model doesn't ramble.
|
// Baseline arm: no skill, just the task.
|
||||||
const system = 'Provide just one example for any given task, and no commentary or usage examples.';
|
module.exports = ({ vars }) => [{ role: 'user', content: vars.task }];
|
||||||
module.exports = ({ vars }) => [
|
|
||||||
{ role: 'system', content: system },
|
|
||||||
{ role: 'user', content: vars.task },
|
|
||||||
];
|
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
"name": "ponytail-mcp",
|
"name": "ponytail-mcp",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "MCP server that serves Ponytail's lazy-senior-dev instructions as a prompt and a tool.",
|
"description": "MCP server that serves Ponytail's lazy-senior-dev instructions as a prompt and a tool.",
|
||||||
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bin": { "ponytail-mcp": "./index.js" },
|
|
||||||
"scripts": { "test": "node --test ./test/*.test.js" },
|
"scripts": { "test": "node --test ./test/*.test.js" },
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@modelcontextprotocol/sdk": "^1.19.0",
|
"@modelcontextprotocol/sdk": "^1.19.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user