npx skillsauth add kuboon/dotfiles denoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
import { serve } from "https://deno.land/[email protected]/http/server.ts";
run
deno add jsr:@std/httpdeno add npm:tailwindcss to add the import map, thenimport { serve } from "@std/http/server.ts";
import { serve } from "tailwindcss";
deno run --allow-net server.ts
Write a deno.json file in the root of your project:
{
"permissions": {
"default": {
"net": ["example.com", "api.example.com"],
"read": ["./data/*"],
"env": {
"ignore": true,
"allow": ["API_KEY", "DATABASE_URL"]
}
},
"build": {
"net": ["deno.land"],
"read": ["./src/*"],
"write": ["./dist/*"]
}
}
}
Then run your script with the -P flags:
deno run -P server.ts
deno run -P=build build.ts
development
jsr release workflow for Deno projects. Use when publishing or releasing packages to JSR (JavaScript Registry) using Deno.
tools
How to save & load skills from my gist
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------