agentsclimarketplace

Build falco web app

Skill gaelic-ghost/socket/skills/build-falco-web-app

The Source for macOS Agent Workflows

Install
npx -y skills add gaelic-ghost/socket --skill build-falco-web-app

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Build or modify a Falco web application in idiomatic F#, using functional routing, request and response helpers, explicit ASP.NET Core integration, security boundaries, and focused tests.

SKILL.md

2.0 KB, as published. Nobody here has run it

Build Falco Web App

Use Falco for its lightweight functional HTTP surface while leaving business behavior as ordinary, testable F# code.

Source Check

Read existing routes, the web host, project references, tests, and configuration before editing. Consult Falco's source and documentation and ASP.NET Core documentation for current package behavior.

Workflow

  1. Confirm Falco is the selected framework; otherwise start with dotnet:choose-fsharp-web-framework.
  2. Define route handlers around one request job. Parse input, call a domain function, then write one explicit response shape.
  3. Keep routing declarative and readable. Split route groups by feature instead of building one mutable registration surface.
  4. Use the existing ASP.NET Core host for configuration, dependency registration, authentication, authorization, logging, and rate or upload limits. Do not hide those platform concerns in unrelated response helpers.
  5. Treat HTML/view code as presentation. Keep it separate from request parsing, authorization, and persistence behavior.
  6. Test domain modules without a host, then add endpoint or integration coverage for routes, input validation, auth decisions, and response contracts.

Validation

Run the repository's targeted commands. If it has none, use:

dotnet build <web-project.fsproj>
dotnet test <test-project.fsproj>

Boundaries

  • Preserve F# compile order and explicit task or async boundaries.
  • Do not translate C# controller or service patterns mechanically into Falco.
  • For Azure resources, hosting, monitoring, identity, or deployment, use the official Azure Skills handoff rather than inventing provider commands here.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.