-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
153 lines (139 loc) · 4.43 KB
/
flake.nix
File metadata and controls
153 lines (139 loc) · 4.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
description = "StackOne AI Python SDK development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
git-hooks.url = "github:cachix/git-hooks.nix";
treefmt-nix.url = "github:numtide/treefmt-nix";
# Agent skills management
agent-skills.url = "github:Kyure-A/agent-skills-nix";
agent-skills.inputs.nixpkgs.follows = "nixpkgs";
# StackOne skills repository (non-flake)
stackone-skills.url = "github:StackOneHQ/skills";
stackone-skills.flake = false;
};
outputs =
inputs@{
flake-parts,
git-hooks,
treefmt-nix,
agent-skills,
stackone-skills,
...
}:
let
# Agent skills configuration (outside flake-parts for access to inputs)
agentLib = agent-skills.lib.agent-skills;
sources = {
stackone = {
path = stackone-skills;
subdir = ".";
};
};
catalog = agentLib.discoverCatalog sources;
allowlist = agentLib.allowlistFor {
inherit catalog sources;
enable = [
"just-commands"
"release-please"
];
};
selection = agentLib.selectSkills {
inherit catalog allowlist sources;
skills = { };
};
in
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
perSystem =
{ pkgs, system, ... }:
let
treefmtEval = treefmt-nix.lib.evalModule pkgs {
projectRootFile = "flake.nix";
programs = {
nixfmt.enable = true;
ruff-check.enable = true;
ruff-format.enable = true;
};
settings.formatter.oxfmt = {
command = "${pkgs.oxfmt}/bin/oxfmt";
options = [ "--no-error-on-unmatched-pattern" ];
includes = [ "*" ];
excludes = [
"CHANGELOG.md"
];
};
};
pre-commit-check = git-hooks.lib.${system}.run {
src = ./.;
hooks = {
gitleaks = {
enable = true;
name = "gitleaks";
entry = "${pkgs.gitleaks}/bin/gitleaks protect --staged --config .gitleaks.toml";
language = "system";
pass_filenames = false;
};
treefmt = {
enable = true;
package = treefmtEval.config.build.wrapper;
};
ty = {
enable = true;
name = "ty";
entry = "${pkgs.ty}/bin/ty check";
files = "^stackone_ai/";
language = "system";
types = [ "python" ];
};
};
};
# Agent skills bundle and targets
bundle = agentLib.mkBundle { inherit pkgs selection; };
# Use symlink-tree instead of copy-tree for skills
localTargets = inputs.nixpkgs.lib.mapAttrs (
_: t: t // { structure = "symlink-tree"; }
) agentLib.defaultLocalTargets;
in
{
formatter = treefmtEval.config.build.wrapper;
devShells.default = pkgs.mkShellNoCC {
buildInputs = with pkgs; [
uv
ty
just
nixfmt
# security
gitleaks
# Node.js for MCP mock server
bun
pnpm_10
typescript-go
];
shellHook = ''
echo "StackOne AI Python SDK development environment"
# Initialize git submodules if not already done
if [ -f .gitmodules ] && [ ! -f vendor/stackone-ai-node/package.json ]; then
echo "Initializing git submodules..."
git submodule update --init --recursive
fi
# Install Python dependencies only if .venv is missing or uv.lock is newer
if [ ! -d .venv ] || [ uv.lock -nt .venv ]; then
echo "Installing Python dependencies..."
uv sync --all-extras --locked
fi
# Install git hooks
${pre-commit-check.shellHook}
''
+ agentLib.mkShellHook {
inherit pkgs bundle;
targets = localTargets;
};
};
};
};
}