fips-agents-cli 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl
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.
- fips_agents_cli/version.py +1 -1
- {fips_agents_cli-0.1.1.dist-info → fips_agents_cli-0.1.2.dist-info}/METADATA +26 -5
- {fips_agents_cli-0.1.1.dist-info → fips_agents_cli-0.1.2.dist-info}/RECORD +6 -6
- {fips_agents_cli-0.1.1.dist-info → fips_agents_cli-0.1.2.dist-info}/licenses/LICENSE +2 -0
- {fips_agents_cli-0.1.1.dist-info → fips_agents_cli-0.1.2.dist-info}/WHEEL +0 -0
- {fips_agents_cli-0.1.1.dist-info → fips_agents_cli-0.1.2.dist-info}/entry_points.txt +0 -0
fips_agents_cli/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fips-agents-cli
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: CLI tool for creating and managing FIPS-compliant AI agent projects
|
5
5
|
Project-URL: Homepage, https://github.com/rdwj/fips-agents-cli
|
6
6
|
Project-URL: Repository, https://github.com/rdwj/fips-agents-cli
|
@@ -47,19 +47,31 @@ A command-line tool for creating and managing FIPS-compliant AI agent projects,
|
|
47
47
|
|
48
48
|
## Installation
|
49
49
|
|
50
|
-
|
50
|
+
**Recommended:** Install with [pipx](https://pipx.pypa.io/) for isolated command-line tools:
|
51
51
|
|
52
52
|
```bash
|
53
53
|
pipx install fips-agents-cli
|
54
54
|
```
|
55
55
|
|
56
|
-
|
56
|
+
pipx installs the CLI in an isolated environment while making it globally available. This prevents dependency conflicts with other Python packages.
|
57
|
+
|
58
|
+
<details>
|
59
|
+
<summary><b>Alternative: Using pip</b></summary>
|
60
|
+
|
61
|
+
If you prefer pip or don't have pipx installed:
|
57
62
|
|
58
63
|
```bash
|
59
64
|
pip install fips-agents-cli
|
60
65
|
```
|
61
66
|
|
62
|
-
|
67
|
+
**Note:** Consider using a virtual environment to avoid dependency conflicts.
|
68
|
+
|
69
|
+
</details>
|
70
|
+
|
71
|
+
<details>
|
72
|
+
<summary><b>Alternative: Install from source (for development)</b></summary>
|
73
|
+
|
74
|
+
For contributing or local development:
|
63
75
|
|
64
76
|
```bash
|
65
77
|
# Clone the repository
|
@@ -74,6 +86,8 @@ source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
74
86
|
pip install -e .[dev]
|
75
87
|
```
|
76
88
|
|
89
|
+
</details>
|
90
|
+
|
77
91
|
## Quick Start
|
78
92
|
|
79
93
|
### Create a new MCP server project
|
@@ -514,7 +528,14 @@ MIT License - see LICENSE file for details
|
|
514
528
|
|
515
529
|
## Changelog
|
516
530
|
|
517
|
-
### Version 0.1.
|
531
|
+
### Version 0.1.2
|
532
|
+
|
533
|
+
- Documentation: Updated documentation and improved release management guidance
|
534
|
+
- Automation: Added `/create-release` slash command for automated release workflow
|
535
|
+
- Automation: Created `scripts/release.sh` for streamlined version management and tagging
|
536
|
+
- Documentation: Added `RELEASE_CHECKLIST.md` with comprehensive release procedures
|
537
|
+
|
538
|
+
### Version 0.1.1
|
518
539
|
|
519
540
|
- Added `fips-agents generate` command group
|
520
541
|
- Component generation: tools, resources, prompts, middleware
|
@@ -1,7 +1,7 @@
|
|
1
1
|
fips_agents_cli/__init__.py,sha256=Jfo6y6T4HIQ-BeeF89w7F-F4BED63KyCIc1yoFGn9OM,167
|
2
2
|
fips_agents_cli/__main__.py,sha256=rUeQY3jrV6hQVAI2IE0qZCcUnvXDMj5LiCjhlXsc9PQ,130
|
3
3
|
fips_agents_cli/cli.py,sha256=c6ZSIfqZXTAfGc_2sKXanWDuWbxXTUjp4nSbl7yeDig,799
|
4
|
-
fips_agents_cli/version.py,sha256=
|
4
|
+
fips_agents_cli/version.py,sha256=IWx_DJXC-x6jhTpUmUSr_yPgJMJaMDnt7gi9jml40BU,70
|
5
5
|
fips_agents_cli/commands/__init__.py,sha256=AGxi2-Oc-gKE3sR9F39nIxwnzz-4bcfkkJzaP1qhMvU,40
|
6
6
|
fips_agents_cli/commands/create.py,sha256=wWJZTa2NOoF40lnqIGKXKNcZT5jIZxInGk3CAkUfa3w,6372
|
7
7
|
fips_agents_cli/commands/generate.py,sha256=hoPERkaYGlt-R79PRWnxE6vwNtWfun7SMtJN2zaOIKo,14113
|
@@ -11,8 +11,8 @@ fips_agents_cli/tools/generators.py,sha256=bwHKBzWkfJxug4YQXrkRQB_-BxR78kZqe46Aj
|
|
11
11
|
fips_agents_cli/tools/git.py,sha256=-z2EO7vNZhN6Vuzh34ZbqNteZE4vNnLG8oysgzhmypk,3042
|
12
12
|
fips_agents_cli/tools/project.py,sha256=vgnctNgdRJJB14uqy7WM0bqpAoPoK_fZu16Io5Rn2hA,5699
|
13
13
|
fips_agents_cli/tools/validation.py,sha256=3947i5UI46BmwBw4F0yLNdkWvkGJig8qH1nJzvQS6RA,5771
|
14
|
-
fips_agents_cli-0.1.
|
15
|
-
fips_agents_cli-0.1.
|
16
|
-
fips_agents_cli-0.1.
|
17
|
-
fips_agents_cli-0.1.
|
18
|
-
fips_agents_cli-0.1.
|
14
|
+
fips_agents_cli-0.1.2.dist-info/METADATA,sha256=9vncWTElQE2__DYjak7QTKGvPrEdrD-IyxX5AjDQd9o,15514
|
15
|
+
fips_agents_cli-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
16
|
+
fips_agents_cli-0.1.2.dist-info/entry_points.txt,sha256=srO4LAGNp6zcB9zuPW1toLGPyLbcsad9YWsfNxgz20s,57
|
17
|
+
fips_agents_cli-0.1.2.dist-info/licenses/LICENSE,sha256=kxsuNJY2W19dYjR8OstG1UT3RFCJKmtelxPMHMwXrck,1122
|
18
|
+
fips_agents_cli-0.1.2.dist-info/RECORD,,
|
@@ -2,6 +2,8 @@ MIT License
|
|
2
2
|
|
3
3
|
Copyright (c) 2025 Wes Jackson
|
4
4
|
|
5
|
+
Note: Some code in this project was written with AI.
|
6
|
+
|
5
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
8
|
of this software and associated documentation files (the "Software"), to deal
|
7
9
|
in the Software without restriction, including without limitation the rights
|
File without changes
|
File without changes
|