infrakit-cli 0.1.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. infrakit_cli-0.1.14/.gitignore +59 -0
  2. infrakit_cli-0.1.14/CHANGELOG.md +188 -0
  3. infrakit_cli-0.1.14/LICENSE +22 -0
  4. infrakit_cli-0.1.14/PKG-INFO +591 -0
  5. infrakit_cli-0.1.14/README.md +546 -0
  6. infrakit_cli-0.1.14/docs/README.md +35 -0
  7. infrakit_cli-0.1.14/examples/README.md +16 -0
  8. infrakit_cli-0.1.14/examples/crossplane/.infrakit/coding-style.md +374 -0
  9. infrakit_cli-0.1.14/examples/crossplane/.infrakit/context.md +170 -0
  10. infrakit_cli-0.1.14/examples/crossplane/.infrakit/tagging-standard.md +55 -0
  11. infrakit_cli-0.1.14/examples/crossplane/README.md +163 -0
  12. infrakit_cli-0.1.14/examples/crossplane/compositions/xpostgresql-instance/README.md +115 -0
  13. infrakit_cli-0.1.14/examples/crossplane/compositions/xpostgresql-instance/composition.yaml +237 -0
  14. infrakit_cli-0.1.14/examples/crossplane/compositions/xpostgresql-instance/definition.yaml +123 -0
  15. infrakit_cli-0.1.14/examples/crossplane/compositions/xpostgresql-instance/examples/claim-dev.yaml +23 -0
  16. infrakit_cli-0.1.14/examples/crossplane/compositions/xpostgresql-instance/examples/claim-prod.yaml +23 -0
  17. infrakit_cli-0.1.14/examples/terraform/.infrakit/coding-style.md +360 -0
  18. infrakit_cli-0.1.14/examples/terraform/.infrakit/context.md +174 -0
  19. infrakit_cli-0.1.14/examples/terraform/.infrakit/tagging-standard.md +47 -0
  20. infrakit_cli-0.1.14/examples/terraform/README.md +154 -0
  21. infrakit_cli-0.1.14/examples/terraform/modules/s3-secure-bucket/README.md +74 -0
  22. infrakit_cli-0.1.14/examples/terraform/modules/s3-secure-bucket/main.tf +257 -0
  23. infrakit_cli-0.1.14/examples/terraform/modules/s3-secure-bucket/outputs.tf +34 -0
  24. infrakit_cli-0.1.14/examples/terraform/modules/s3-secure-bucket/variables.tf +128 -0
  25. infrakit_cli-0.1.14/examples/terraform/modules/s3-secure-bucket/versions.tf +14 -0
  26. infrakit_cli-0.1.14/pyproject.toml +122 -0
  27. infrakit_cli-0.1.14/src/infrakit_cli/__init__.py +114 -0
  28. infrakit_cli-0.1.14/src/infrakit_cli/agent_config.py +95 -0
  29. infrakit_cli-0.1.14/src/infrakit_cli/banner.py +47 -0
  30. infrakit_cli-0.1.14/src/infrakit_cli/bootstrap.py +184 -0
  31. infrakit_cli-0.1.14/src/infrakit_cli/cli.py +847 -0
  32. infrakit_cli-0.1.14/src/infrakit_cli/console.py +10 -0
  33. infrakit_cli-0.1.14/src/infrakit_cli/git_utils.py +78 -0
  34. infrakit_cli-0.1.14/src/infrakit_cli/github_api.py +104 -0
  35. infrakit_cli-0.1.14/src/infrakit_cli/iac_config.py +83 -0
  36. infrakit_cli-0.1.14/src/infrakit_cli/interactive.py +124 -0
  37. infrakit_cli-0.1.14/src/infrakit_cli/mcp.py +117 -0
  38. infrakit_cli-0.1.14/src/infrakit_cli/mcp_config.py +43 -0
  39. infrakit_cli-0.1.14/src/infrakit_cli/skills.py +281 -0
  40. infrakit_cli-0.1.14/src/infrakit_cli/template_renderer.py +426 -0
  41. infrakit_cli-0.1.14/src/infrakit_cli/tools.py +81 -0
  42. infrakit_cli-0.1.14/src/infrakit_cli/tracker.py +115 -0
  43. infrakit_cli-0.1.14/templates/agent_personas/cloud_architect.md +190 -0
  44. infrakit_cli-0.1.14/templates/agent_personas/cloud_security_engineer.md +249 -0
  45. infrakit_cli-0.1.14/templates/agent_personas/cloud_solutions_engineer.md +131 -0
  46. infrakit_cli-0.1.14/templates/commands/analyze.md +238 -0
  47. infrakit_cli-0.1.14/templates/commands/architect-review.md +221 -0
  48. infrakit_cli-0.1.14/templates/commands/security-review.md +208 -0
  49. infrakit_cli-0.1.14/templates/commands/setup.md +413 -0
  50. infrakit_cli-0.1.14/templates/commands/status.md +125 -0
  51. infrakit_cli-0.1.14/templates/iac/crossplane/agent_personas/crossplane_engineer.md +263 -0
  52. infrakit_cli-0.1.14/templates/iac/crossplane/assets/coding-style-template.md +381 -0
  53. infrakit_cli-0.1.14/templates/iac/crossplane/commands/implement.md +301 -0
  54. infrakit_cli-0.1.14/templates/iac/crossplane/commands/new_composition.md +400 -0
  55. infrakit_cli-0.1.14/templates/iac/crossplane/commands/plan.md +332 -0
  56. infrakit_cli-0.1.14/templates/iac/crossplane/commands/review.md +239 -0
  57. infrakit_cli-0.1.14/templates/iac/crossplane/commands/setup-coding-style.md +249 -0
  58. infrakit_cli-0.1.14/templates/iac/crossplane/commands/update_composition.md +659 -0
  59. infrakit_cli-0.1.14/templates/iac/terraform/agent_personas/terraform_engineer.md +232 -0
  60. infrakit_cli-0.1.14/templates/iac/terraform/assets/coding-style-template.md +404 -0
  61. infrakit_cli-0.1.14/templates/iac/terraform/commands/create_terraform_code.md +390 -0
  62. infrakit_cli-0.1.14/templates/iac/terraform/commands/implement.md +303 -0
  63. infrakit_cli-0.1.14/templates/iac/terraform/commands/plan.md +295 -0
  64. infrakit_cli-0.1.14/templates/iac/terraform/commands/review.md +248 -0
  65. infrakit_cli-0.1.14/templates/iac/terraform/commands/setup-coding-style.md +231 -0
  66. infrakit_cli-0.1.14/templates/iac/terraform/commands/update_terraform_code.md +666 -0
  67. infrakit_cli-0.1.14/templates/project-context-template.md +174 -0
  68. infrakit_cli-0.1.14/templates/tagging-standard-template.md +55 -0
  69. infrakit_cli-0.1.14/templates/vscode-settings.json +12 -0
  70. infrakit_cli-0.1.14/tests/__init__.py +1 -0
  71. infrakit_cli-0.1.14/tests/conftest.py +12 -0
  72. infrakit_cli-0.1.14/tests/test_agent_config.py +219 -0
  73. infrakit_cli-0.1.14/tests/test_ai_skills_basic.py +49 -0
  74. infrakit_cli-0.1.14/tests/test_banner_group.py +40 -0
  75. infrakit_cli-0.1.14/tests/test_check_command.py +132 -0
  76. infrakit_cli-0.1.14/tests/test_check_tool.py +63 -0
  77. infrakit_cli-0.1.14/tests/test_cli_commands.py +100 -0
  78. infrakit_cli-0.1.14/tests/test_github_helpers.py +207 -0
  79. infrakit_cli-0.1.14/tests/test_iac_config.py +150 -0
  80. infrakit_cli-0.1.14/tests/test_mcp_config.py +156 -0
  81. infrakit_cli-0.1.14/tests/test_select_with_arrows.py +108 -0
  82. infrakit_cli-0.1.14/tests/test_step_tracker.py +168 -0
  83. infrakit_cli-0.1.14/tests/test_template_renderer.py +353 -0
  84. infrakit_cli-0.1.14/tests/test_terraform_iac_config.py +258 -0
  85. infrakit_cli-0.1.14/tests/test_terraform_init_command.py +291 -0
  86. infrakit_cli-0.1.14/tests/test_terraform_templates.py +435 -0
@@ -0,0 +1,59 @@
1
+ # Agents
2
+ .kilo/
3
+
4
+ # Python
5
+ .coverage
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+ *.so
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+
27
+ # Virtual environments
28
+ venv/
29
+ ENV/
30
+ env/
31
+ .venv
32
+
33
+ # IDE
34
+ .vscode/
35
+ .idea/
36
+ *.swp
37
+ *.swo
38
+ .DS_Store
39
+ *.tmp
40
+
41
+ # Project specific
42
+ *.log
43
+ .env
44
+ .env.local
45
+ *.lock
46
+
47
+ # Spec Kit-specific files
48
+ .genreleases/
49
+ *.zip
50
+ sdd-*/
51
+ docs/dev
52
+
53
+ # Extension system
54
+ .specify/extensions/.cache/
55
+ .specify/extensions/.backup/
56
+ .specify/extensions/*/local-config.yml
57
+
58
+ .air/
59
+ .claude/
@@ -0,0 +1,188 @@
1
+ # Changelog
2
+
3
+ <!-- markdownlint-disable MD024 -->
4
+
5
+ Recent changes to the InfraKit CLI and templates are documented here.
6
+
7
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
+
10
+ ## [Unreleased]
11
+
12
+ ### Changed
13
+
14
+ - **Personas rewritten — first 50 lines load-bearing, all files ≤265 lines.** The five persona files (`cloud_solutions_engineer.md`, `cloud_architect.md`, `cloud_security_engineer.md`, `terraform_engineer.md`, `crossplane_engineer.md`) totalled 2,147 lines before — now 1,063 (cut in half). The first ~50 lines of each now packs everything the model conditions on hardest: identity, scope, what they DON'T own (with explicit hand-off targets), what files they must read, and the hard rules. Everything else is reference material. Removed: long table-of-contents lists, ASCII flow diagrams, duplicate examples, multi-paragraph rationale for every rule, and the `MUST` / `CRITICAL` / `WAIT` all-caps shouting that frontier models don't respond to better than calm prose.
15
+
16
+ - **Claude Code subagents are now real subagents, not role-play.** On Claude Code, the persona files are registered as **custom subagent types** at `.claude/agents/<persona-name>.md`. The multi-persona commands invoke them via `Task(subagent_type=cloud-architect, …)` with a one-paragraph delegation prompt; the persona file is the subagent's system prompt, the report contract is in the persona, and the orchestrator never sees the architect's reasoning steps — only the final report. New `claude_subagents` extras hook in `AGENT_CONFIG` drives the rendering; new tests cover the layout. Codex / Gemini / Copilot / generic agents keep the inline fallback as before (no custom-subagent primitive available there).
17
+
18
+ - **Scoped supported AI agents from 19 down to 5**. The supported set is now: **Claude Code**, **Codex CLI**, **Gemini CLI**, **GitHub Copilot**, and a **generic** fallback for bring-your-own-agent setups. Dropped: cursor-agent, qwen, opencode, windsurf, kilocode, auggie, codebuddy, qodercli, roo, q (Amazon Q), amp, shai, agy, bob. The wider agent matrix accumulated faster than it could be tested end-to-end; per-agent prompt quality drifted because no one was running the workflow against 19 harnesses. The cap is now five agents that are tested on every release. If you need first-class support for another agent, open an issue. Existing user projects on dropped agents continue to work — the prompts they already have don't move; only fresh `infrakit init` is constrained.
19
+
20
+ - **Multi-persona commands now invoke real subagents on agents that support them.** The four multi-persona commands (`/infrakit:create_terraform_code`, `/infrakit:new_composition`, `/infrakit:update_terraform_code`, `/infrakit:update_composition`) previously asked the parent agent to "adopt the X persona" inline — which produced role-play rather than real context isolation. On Claude Code, each read-only review phase (Cloud Architect, Cloud Security Engineer) now delegates to a fresh subagent via the `Task` tool, with the persona file as the subagent's system prompt and a structured-report return contract. The interactive Cloud Solutions Engineer phase still runs inline because subagents can't pause for user input. For Codex / Gemini / Copilot / generic agents (no `Task` primitive), the prompts include an explicit inline fallback that marks the persona-switch boundary in the agent's output. New `supports_subagents` field in `AGENT_CONFIG` is the source of truth.
21
+
22
+ - **Split `src/infrakit_cli/__init__.py` into focused modules**. The 1,837-line megafile is now 11 modules of 100–600 lines each (`cli.py`, `bootstrap.py`, `skills.py`, `mcp.py`, `git_utils.py`, `tools.py`, `tracker.py`, `interactive.py`, `banner.py`, `console.py`, `github_api.py`). `__init__.py` is now an explicit re-export shim with `__all__` so existing imports (`from infrakit_cli import app`, etc.) continue to work. No behaviour change.
23
+
24
+ - **Dropped the "Constraint-Driven Development" branding**. InfraKit is now described as "spec-kit for IaC, with a multi-persona pipeline" — a more honest framing that credits [spec-kit](https://github.com/github/spec-kit) for the workflow shape and reserves InfraKit's claims for its actual contribution (the four-persona Cloud Solutions Engineer → Architect → Security → IaC Engineer pipeline). The CDD name appeared only in marketing and docs; prompts and runtime code were already neutral. The methodology document at `constraint-driven.md` keeps its filename (URL stability) but reads as Spec-Driven Development with InfraKit-specific additions.
25
+
26
+ - **Single-artifact release**. Templates and prompts now ship inside the `infrakit-cli` PyPI wheel instead of as 76 per-agent GitHub release ZIPs (19 agents × 2 IaC × 2 scripts). `infrakit init` performs all per-agent layout transformations (folder placement, TOML wrapping, Copilot prompt pairs, VS Code settings) at install time from the bundled prompts. **Effects**:
27
+ - `infrakit init` now runs entirely offline; no network calls.
28
+ - `--github-token` and `--skip-tls` flags are removed (templates no longer download).
29
+ - Existing user projects continue to work — the prompts they already have in `.claude/commands/` (or equivalent) are unchanged. Re-running `infrakit init --here` will re-materialize the latest in-package prompts.
30
+
31
+ - **Full walkthrough examples**. `examples/terraform/` and `examples/crossplane/` now contain complete end-to-end runs (config, spec, plan, tasks, reviews, generated code) for an AWS S3 secure-bucket module and an `XPostgreSQLInstance` composition respectively.
32
+
33
+ ### Removed
34
+
35
+ - Per-agent GitHub release ZIPs (`infrakit-template-<agent>-<iac>-<script>-vX.Y.Z.zip`). Install the CLI from PyPI (`pip install infrakit-cli` or `uv pip install infrakit-cli`) and run `infrakit init`.
36
+ - The `--github-token` and `--skip-tls` flags on `infrakit init` (templates are now bundled in the wheel).
37
+ - Six unused root template files (`plan-template.md`, `spec-template.md`, `tasks-template.md`, `agent-file-template.md`, `checklist-template.md`, `tagging-constraint-template.md`) and ten helper scripts (`setup-plan.sh/.ps1`, `create-new-feature.sh/.ps1`, `update-agent-context.sh/.ps1`, `check-prerequisites.sh/.ps1`, `common.sh/.ps1`) that fed them. None were referenced by any current InfraKit prompt.
38
+
39
+ ### Added
40
+
41
+ - **Auto-generated Task Lists**: `/infrakit:plan` now automatically generates `tasks.md` after the user accepts the plan. Tasks are checkbox items (`- [ ]`) that `/infrakit:implement` marks off as it executes. No separate `/infrakit:tasks` command needed.
42
+
43
+ - **Post-Implementation Artifacts**: `/infrakit:implement` now writes three artifacts after all tasks complete:
44
+ - `.infrakit_context.md` — records the resource interface (variables, outputs, resources provisioned)
45
+ - `.infrakit_changelog.md` — appends a structured entry (change type, summary, ADD/MODIFY/REMOVE breakdown, state impact)
46
+ - `infrakit_composition_contract.md` / `.infrakit_terraform_contract.md` — regenerated from the freshly-written code and presented for review
47
+
48
+ - **Contract File Bootstrapping**: `/infrakit:update_composition` and `/infrakit:update_terraform_code` now check for `.infrakit_context.md`, `.infrakit_changelog.md`, and the resource contract file at the start. If any are missing but the implementation code exists, they are generated from the code and presented for user review before the spec update begins.
49
+
50
+ - **Iterative Requirements Clarification**: The Cloud Solutions Engineer in update commands now asks clarifying questions iteratively until requirements are fully understood before writing `spec.md`. A completion gate ("Are these requirements fully clear?") must pass before handing off to the Cloud Architect.
51
+
52
+ - **Multi-Option Architecture Review**: The Cloud Architect now presents 2–3 named design options with trade-off tables (complexity, cost, flexibility, risk) for the user to choose from, rather than a single recommendation.
53
+
54
+ - **Track Path Migration**: All track directories now live under `.infrakit_tracks/tracks/<track-name>/` and the registry is at `.infrakit_tracks/tracks.md`. Previously these were under `.infrakit/tracks/`. Projects initialized with an older version should move these directories manually.
55
+
56
+ ### Removed
57
+
58
+ - **`/infrakit:tasks` command**: Removed as a standalone command. Task generation is now integrated into `/infrakit:plan` — after the user accepts the plan, `tasks.md` is auto-generated with no extra step required. The workflow is now `plan → implement` instead of `plan → tasks → implement`.
59
+
60
+ ### Changed
61
+
62
+ - **Changelog timing**: The changelog (`infrakit_changelog.md`) is now written by `/infrakit:implement` after successful implementation, not by the update commands during spec registration. This ensures the changelog only records what was actually built.
63
+
64
+ - **Implement prereq checks**: `/infrakit:implement` now requires all three track artifacts — `spec.md`, `plan.md`, and `tasks.md`. If any are missing, it halts with a clear error directing to the right command to generate the missing file.
65
+
66
+ - **`/infrakit:security-review` verdict messages**: Updated to direct users to `/infrakit:plan` instead of the removed `/infrakit:tasks` command.
67
+
68
+ - **`/infrakit:status` output**: Planned tracks now show `→ Run /infrakit:implement <track-name>` (tasks.md note added inline).
69
+
70
+ ### Fixed
71
+
72
+ - **Terraform Release Artifacts**: Fixed Terraform zip packages not being uploaded to GitHub Releases
73
+ - `create-github-release.sh` was hard-coded with 38 Crossplane-only file paths; Terraform packages
74
+ built by `create-release-packages.sh` were silently omitted from every release since v0.1.7
75
+ - Replaced hard-coded list with dynamic discovery: uploads all `infrakit-template-*-$VERSION.zip`
76
+ files from `.genreleases/`, covering all agents × IaC tools × script types automatically
77
+ - Added guard that exits with a clear error if no packages are found in `.genreleases/`
78
+
79
+ - **Test Coverage**: Added `implement.md` to all parametrized test lists in `TestTerraformCommandFilesExist`
80
+ and `TestTerraformCommandFileFrontmatter` — the file existed and was registered in `iac_config.py`
81
+ but was absent from the test suite
82
+
83
+ ## [0.1.9] - 2026-04-07
84
+
85
+ ### Added
86
+
87
+ - **Roo Code Support**: Added `roo` (Roo Code) to the supported AI assistants list
88
+ - **Documentation Updates**: Synchronized all documentation (README, AGENTS.md, and docs/) with the latest code features
89
+ - Updated `README.md` and `AGENTS.md` with latest agent directories and formats
90
+ - Updated `docs/index.md` and others to reflect full Terraform support
91
+ - Updated `infrakit init` help text with all supported agents
92
+
93
+ ## [0.1.8] - 2026-04-07
94
+
95
+ ### Changed
96
+
97
+ - **Release Script Cleanup**: Removed dead `technical-reference` copy blocks from release scripts
98
+ (PR #11) — technical reference docs no longer exist in the repository
99
+
100
+ ## [0.1.7] - 2026-04-07
101
+
102
+ ### Added
103
+
104
+ - **Terraform IaC Support**: Added full Terraform support as a second IaC tool alongside Crossplane
105
+ - New `--iac terraform` option in `infrakit init` bootstraps projects with Terraform-specific workflows
106
+ - New commands: `create_terraform_code`, `update_terraform_code`, `plan`, `review`
107
+ - `create_terraform_code`: Multi-phase Cloud Solutions Engineer → Architect Review → Security Review → spec confirmation workflow for new Terraform modules
108
+ - `update_terraform_code`: Scans existing `.tf` files to reconstruct context, classifies changes (Additive/Behavioral/Breaking), generates `spec.md` and `migration.md` for breaking changes
109
+ - `plan`: Looks up resource arguments on `registry.terraform.io`, designs variable→resource and output→attribute mappings, writes `plan.md`
110
+ - `review`: Reviews HCL for hardcoded secrets, encryption, tagging completeness, version pinning, variable/output descriptions, and file structure
111
+ - New `terraform_engineer.md` agent persona for the `/implement` command
112
+ - New `coding-style-template.md` with Terraform conventions (naming, tagging, backend, security defaults)
113
+ - New `terraform.md` technical reference documentation
114
+ - Updated `create-release-packages.sh` to include terraform in release packages
115
+
116
+ ## [0.1.6] - 2026-02-23
117
+
118
+ ### Fixed
119
+
120
+ - **Parameter Ordering Issues (#1641)**: Fixed CLI parameter parsing issue where option flags were incorrectly consumed as values for preceding options
121
+ - Added validation to detect when `--ai` or `--ai-commands-dir` incorrectly consume following flags like `--here` or `--ai-skills`
122
+ - Now provides clear error messages: "Invalid value for --ai: '--here'"
123
+ - Includes helpful hints suggesting proper usage and listing available agents
124
+ - Commands like `infrakit init --ai-skills --ai --here` now fail with actionable feedback instead of confusing "Must specify project name" errors
125
+ - Added comprehensive test suite (5 new tests) to prevent regressions
126
+
127
+ ## [0.1.5] - 2026-02-21
128
+
129
+ ### Fixed
130
+
131
+ - **AI Skills Installation Bug (#1658)**: Fixed `--ai-skills` flag not generating skill files for GitHub Copilot and other agents with non-standard command directory structures
132
+ - Added `commands_subdir` field to `AGENT_CONFIG` to explicitly specify the subdirectory name for each agent
133
+ - Affected agents now work correctly: copilot (`.github/agents/`), opencode (`.opencode/command/`), windsurf (`.windsurf/workflows/`), codex (`.codex/prompts/`), kilocode (`.kilocode/workflows/`), q (`.amazonq/prompts/`), and agy (`.agent/workflows/`)
134
+ - The `install_ai_skills()` function now uses the correct path for all agents instead of assuming `commands/` for everyone
135
+
136
+ ## [0.1.4] - 2026-02-20
137
+
138
+ ### Fixed
139
+
140
+ - **Qoder CLI detection**: Renamed `AGENT_CONFIG` key from `"qoder"` to `"qodercli"` to match the actual executable name, fixing `infrakit check` and `infrakit init --ai` detection failures
141
+
142
+ ## [0.1.3] - 2026-02-20
143
+
144
+ ### Added
145
+
146
+ - **Generic Agent Support**: Added `--ai generic` option for unsupported AI agents ("bring your own agent")
147
+ - Requires `--ai-commands-dir <path>` to specify where the agent reads commands from
148
+ - Generates Markdown commands with `$ARGUMENTS` format (compatible with most agents)
149
+ - Example: `infrakit init my-project --ai generic --ai-commands-dir .myagent/commands/`
150
+ - Enables users to start with InfraKit immediately while their agent awaits formal support
151
+
152
+ ## [0.0.102] - 2026-02-20
153
+
154
+ - fix: include 'src/**' path in release workflow triggers (#1646)
155
+
156
+ ## [0.0.101] - 2026-02-19
157
+
158
+ - chore(deps): bump github/codeql-action from 3 to 4 (#1635)
159
+
160
+ ## [0.0.100] - 2026-02-19
161
+
162
+ - Add pytest and Python linting (ruff) to CI (#1637)
163
+ - feat: add pull request template for better contribution guidelines (#1634)
164
+
165
+ ## [0.0.99] - 2026-02-19
166
+
167
+ - Feat/ai skills (#1632)
168
+
169
+ ## [0.0.98] - 2026-02-19
170
+
171
+ - chore(deps): bump actions/stale from 9 to 10 (#1623)
172
+ - feat: add dependabot configuration for pip and GitHub Actions updates (#1622)
173
+
174
+ ## [0.0.97] - 2026-02-18
175
+
176
+ - Remove Maintainers section from README.md (#1618)
177
+
178
+ ## [0.0.96] - 2026-02-17
179
+
180
+ - fix: typo in plan-template.md (#1446)
181
+
182
+ ## [0.0.95] - 2026-02-12
183
+
184
+ - Feat: add a new agent: Google Anti Gravity (#1220)
185
+
186
+ ## [0.0.94] - 2026-02-11
187
+
188
+ - Add stale workflow for 180-day inactive issues and PRs (#1594)
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright GitHub, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+