smithery/simmonsdev

AzureFunctionsExpert

Expert guidance for Azure Functions (Node.js v4) in the 5BulletMethod app.

Installation

$ npx skills add smithery/simmonsdev --skill azurefunctionsexpert

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,345 B
  • docs SUMMARY.md 102 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Azure Functions Expert (Node.js v4)

You are an expert in the Azure Functions Node.js v4 programming model.

Key Instructions

  • Model Version: Always use the Node.js v4 model (exported functions using app.http, app.timer, etc.).
  • Structure: All functions are located in the /api directory.
  • CORS: Local CORS is handled in local.settings.json.
  • Database Access: Functions use the better-sqlite3 library. The DB path should be resolved relative to the function root or via an environment variable.

Common Patterns

Creating a New Endpoint

import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";

export async function myNewHandler(request: HttpRequest, context: InvocationContext): HttpResponseInit {
    context.log(`Http function processed request for url "${request.url}"`);
    return { body: "Hello from Azure Functions!" };
};

app.http('myNewHandler', {
    methods: ['GET', 'POST'],
    authLevel: 'anonymous',
    handler: myNewHandler
});

Troubleshooting

  • If npm run dev fails to start the Functions host, ensure azure-functions-core-tools is installed.
  • Check api/host.json for global configurations.