Skip to content

Instantly share code, notes, and snippets.

View jasonkneen's full-sized avatar
🏠
Working from home

Jason Kneen jasonkneen

🏠
Working from home
View GitHub Profile
@jasonkneen
jasonkneen / SKILL.md
Created January 26, 2026 08:35 — forked from kieranklaassen/SKILL.md
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name description
orchestrating-swarms
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns.

Claude Code Swarm Orchestration

Master multi-agent orchestration using Claude Code's TeammateTool and Task system.


@jasonkneen
jasonkneen / prompt.md
Created March 24, 2025 21:32
v0 System Prompt

Thought for 2 seconds### Comprehensive Guide to v0 Capabilities

1. Code Generation Capabilities

1.1 Code Projects

Code Projects are complete React and Next.js applications I can create for you with multiple interconnected files.

1.1.1 Next.js App Router Support

@jasonkneen
jasonkneen / KerasToCoreML.dockerfile
Created August 11, 2024 20:47 — forked from devyhia/KerasToCoreML.dockerfile
Docker Image for Keras to CoreML Conversion (Also supports Nvidia GPU training and testing)
FROM nvidia/cuda:9.0-cudnn7-devel
# Install Conda
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
ENV PATH /opt/conda/bin:$PATH
RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-certificates \
libglib2.0-0 libxext6 libsm6 libxrender1 \
git mercurial subversion
@jasonkneen
jasonkneen / push-all-tags.sh
Created November 20, 2018 18:18 — forked from jamieoliver/push-all-tags.sh
Push all Git tags to a remote repository. Useful for keeping a fork up to date with the upstream repo.
git push <remote> --tags
@jasonkneen
jasonkneen / gitconfig
Created November 16, 2018 11:48
Getting release notes from Git logs
# drop this into your ./.gitconfig file
# usage
# $ git today
# $ git yesterday
# $ git since 18-11-01
#
# will display a list of formatted commits you can lift to use for release notes
[alias]
today = log --since=1am --pretty=format:"%C(blue)-\\ %s"
0411162374b5fcbd0817ddc24470640dc281136483a34ae1a1600bb6918bac5696fdb48c57a04aaaaa0c29d1e4f41148421584d10cc51beac97aae017f359d6af9
@jasonkneen
jasonkneen / index.js
Created January 14, 2016 15:27 — forked from afranioce/index.js
Appcelerator swipe card like tinder
var win = Titanium.UI.createWindow({
backgroundColor: "#ffffff",
title: "win"
});
// animations
var animateLeft = Ti.UI.createAnimation({
left: -520,
transform: Ti.UI.create2DMatrix({rotate: 60}),
opacity: 0,
@jasonkneen
jasonkneen / elements.js
Last active November 28, 2016 14:26
In the latest TiAlloy you can specify a module tag against the <Alloy> element in XML and this will be used when creating any elements in the view, so you can override, customise etc. The problem is if you want to use multiple commonJS libraries, there's no support in the Alloy Tag -- you'd have to change the module attribute for each element --…
var o = {};
// include the modules you want - purposely did this as seperate lines so it's easier to comment out modules etc
_.extend(o, require("module1"));
_.extend(o, require("module2"));
_.extend(o, require("module3"));
// make available under a single export for use in <Alloy> tag
module.exports = o;

Keybase proof

I hereby claim:

  • I am jasonkneen on github.
  • I am jasonkneen (https://keybase.io/jasonkneen) on keybase.
  • I have a public key whose fingerprint is 6B43 0656 0B6A DD66 A98D DE12 6B6E 080E CD0C 5CFE

To claim this, I am signing this object:

@jasonkneen
jasonkneen / Alloy.js
Last active November 27, 2018 07:12
Dynamically change languages in a Titanium Alloy app (for testing)
// add this to the Alloy.js file
// Set to run in ENV_DEV mode so it's used for testing withou
// having to change languages on device etc
// NO checks in place so assumes you know what you're doing, have
// the relevant strings files and specify the correct one!
// should work on Android - not tested yet!
if (ENV_DEV) {
Alloy.Globals.setLanguage = function(lang) {