Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.23 KB

File metadata and controls

46 lines (36 loc) · 1.23 KB

Paper Compute Co. skills

Our curated AI agent skills.

Use them in your project's flake with flake-skills:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    paper-skills.url = "github:papercomputeco/skills";
    paper-skills.inputs.nixpkgs.follows = "nixpkgs";
  };

  outputs = { self, nixpkgs, paper-skills }:
    let
      system = "x86_64-linux";
      pkgs   = nixpkgs.legacyPackages.${system};
      skills = paper-skills.lib;
    in
    {
      devShells.${system}.default = pkgs.mkShell {
        shellHook = skills.mkSkillsHook {
          skills = [ "dagger-check" ];
        };
      };
    };
}

Enter the dev shell nix develop for skills to automatically propagate.

Or install directly with the skills CLI:

npx skills add papercomputeco/skills

Skill Description
confluent-cloud-setup Set up Confluent Cloud clusters, topics, and API keys for any project
dagger-check Tell the agent how to run dagger check
tapes Search and query past agent sessions from local tapes SQLite store