mapify-cli 3.0.0__tar.gz → 3.2.0__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.
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/.claude/skills/README.md +4 -6
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/.gitignore +2 -10
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/PKG-INFO +17 -6
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/README.md +14 -5
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/pyproject.toml +3 -1
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/__init__.py +207 -153
- mapify_cli-3.2.0/src/mapify_cli/dependency_graph.py +347 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/entity_extractor.py +7 -2
- mapify_cli-3.2.0/src/mapify_cli/intent_detector.py +69 -0
- mapify_cli-3.2.0/src/mapify_cli/ralph_state.py +473 -0
- mapify_cli-3.2.0/src/mapify_cli/repo_insight.py +203 -0
- mapify_cli-3.2.0/src/mapify_cli/schemas.py +498 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/CLAUDE.md +80 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/actor.md +160 -44
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/curator.md +2 -2
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/debate-arbiter.md +1 -1
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/documentation-reviewer.md +3 -3
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/evaluator.md +3 -8
- mapify_cli-3.2.0/src/mapify_cli/templates/agents/final-verifier.md +178 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/monitor.md +146 -50
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/predictor.md +43 -21
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/reflector.md +6 -4
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/research-agent.md +55 -62
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/task-decomposer.md +188 -32
- mapify_cli-3.2.0/src/mapify_cli/templates/commands/map-check.md +460 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/commands/map-debate.md +61 -27
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/commands/map-debug.md +9 -11
- mapify_cli-3.2.0/src/mapify_cli/templates/commands/map-efficient.md +564 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/commands/map-fast.md +7 -8
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/commands/map-learn.md +9 -9
- mapify_cli-3.2.0/src/mapify_cli/templates/commands/map-plan.md +438 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/commands/map-release.md +9 -27
- mapify_cli-3.2.0/src/mapify_cli/templates/commands/map-resume.md +454 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/commands/map-review.md +19 -17
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/hooks/block-dangerous.sh +3 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/hooks/block-secrets.py +3 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/hooks/end-of-turn.sh +187 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/hooks/improve-prompt.py +2 -1
- mapify_cli-3.2.0/src/mapify_cli/templates/hooks/post-edit-reminder.py +82 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/hooks/ralph-context-pruner.py +263 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/hooks/ralph-iteration-logger.py +312 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/hooks/safety-guardrails.py +141 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/hooks/workflow-context-injector.py +255 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/hooks/workflow-gate.py +178 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/map/scripts/diagnostics.py +159 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/map/scripts/map_orchestrator.py +898 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/map/scripts/map_step_runner.py +368 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/ralph-loop-config.json +33 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/references/bash-guidelines.md +260 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/references/escalation-matrix.md +31 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/references/step-state-schema.md +78 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/references/workflow-state-schema.md +269 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/settings.hooks.json +74 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/settings.json +38 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/README.md +9 -12
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-cli-reference/SKILL.md +61 -1
- mapify_cli-3.2.0/src/mapify_cli/templates/skills/map-cli-reference/scripts/check-command.sh +126 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-planning/SKILL.md +72 -9
- mapify_cli-3.2.0/src/mapify_cli/templates/skills/map-planning/scripts/get-plan-path.sh +40 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-planning/scripts/init-session.sh +14 -9
- mapify_cli-3.2.0/src/mapify_cli/templates/skills/map-planning/templates/iteration_history.md +93 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/SKILL.md +164 -180
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/resources/agent-architecture.md +52 -20
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/resources/map-efficient-deep-dive.md +40 -37
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/resources/map-fast-deep-dive.md +55 -58
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/resources/map-feature-deep-dive.md +5 -2
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/resources/map-refactor-deep-dive.md +4 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/resources/playbook-system.md +3 -4
- mapify_cli-3.2.0/src/mapify_cli/templates/skills/map-workflows-guide/scripts/validate-workflow-choice.py +159 -0
- mapify_cli-3.2.0/src/mapify_cli/templates/skills/skill-rules.json +76 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/workflow-rules.json +35 -37
- mapify_cli-3.2.0/src/mapify_cli/verification_recorder.py +370 -0
- mapify_cli-3.2.0/src/mapify_cli/workflow_finalizer.py +56 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/workflow_state.py +71 -2
- mapify_cli-3.0.0/docs/cipher-setup-guide/README.md +0 -51
- mapify_cli-3.0.0/src/mapify_cli/schemas.py +0 -201
- mapify_cli-3.0.0/src/mapify_cli/templates/commands/map-efficient.md +0 -589
- mapify_cli-3.0.0/src/mapify_cli/templates/commands/map-resume.md +0 -423
- mapify_cli-3.0.0/src/mapify_cli/templates/hooks/end-of-turn.sh +0 -258
- mapify_cli-3.0.0/src/mapify_cli/templates/settings.hooks.json +0 -59
- mapify_cli-3.0.0/src/mapify_cli/templates/settings.json +0 -34
- mapify_cli-3.0.0/src/mapify_cli/templates/skills/map-planning/scripts/get-plan-path.sh +0 -35
- mapify_cli-3.0.0/src/mapify_cli/templates/skills/map-workflows-guide/resources/cipher-integration.md +0 -291
- mapify_cli-3.0.0/src/mapify_cli/templates/skills/skill-rules.json +0 -29
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/contradiction_detector.py +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/graph_query.py +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/relationship_detector.py +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/agents/synthesizer.md +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/map/static-analysis/analyze.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/map/static-analysis/handlers/common.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/map/static-analysis/handlers/go.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/map/static-analysis/handlers/python.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/map/static-analysis/handlers/rust.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/map/static-analysis/handlers/typescript.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/references/decomposition-examples.md +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/references/mcp-usage-examples.md +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-planning/scripts/check-complete.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-planning/scripts/show-focus.sh +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-planning/templates/findings.md +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-planning/templates/progress.md +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-planning/templates/task_plan.md +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/templates/skills/map-workflows-guide/resources/map-debug-deep-dive.md +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/tools/__init__.py +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/tools/validate_dependencies.py +0 -0
- {mapify_cli-3.0.0 → mapify_cli-3.2.0}/src/mapify_cli/workflow_logger.py +0 -0
|
@@ -34,7 +34,7 @@ Skills provide specialized guidance without executing code. They help users unde
|
|
|
34
34
|
|
|
35
35
|
**Content:**
|
|
36
36
|
- Quick decision tree (5 questions)
|
|
37
|
-
- Workflow comparison matrix (
|
|
37
|
+
- Workflow comparison matrix (4 implemented + 2 planned)
|
|
38
38
|
- Detailed workflow descriptions
|
|
39
39
|
- Agent architecture overview
|
|
40
40
|
- 8 deep-dive resource files
|
|
@@ -50,12 +50,11 @@ MAP: [Shows decision tree and comparison matrix]
|
|
|
50
50
|
**Resources available:**
|
|
51
51
|
- `map-fast-deep-dive.md` - When (not) to use /map-fast
|
|
52
52
|
- `map-efficient-deep-dive.md` - Optimization strategies
|
|
53
|
-
- `map-feature-deep-dive.md` - Full validation workflow
|
|
54
53
|
- `map-debug-deep-dive.md` - Debugging techniques
|
|
55
|
-
- `map-
|
|
56
|
-
- `
|
|
54
|
+
- `map-feature-deep-dive.md` - Full validation workflow (PLANNED)
|
|
55
|
+
- `map-refactor-deep-dive.md` - Dependency analysis (PLANNED)
|
|
56
|
+
- `agent-architecture.md` - How 12 agents orchestrate
|
|
57
57
|
- `playbook-system.md` - Knowledge storage and search
|
|
58
|
-
- `cipher-integration.md` - Cross-project learning
|
|
59
58
|
|
|
60
59
|
---
|
|
61
60
|
|
|
@@ -126,7 +125,6 @@ Skills work seamlessly with the prompt improvement system:
|
|
|
126
125
|
├── map-refactor-deep-dive.md
|
|
127
126
|
├── agent-architecture.md
|
|
128
127
|
├── playbook-system.md
|
|
129
|
-
└── cipher-integration.md
|
|
130
128
|
```
|
|
131
129
|
|
|
132
130
|
---
|
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
.clinerules/cipher-rules.md
|
|
3
|
-
.kilocode/rules/cipher-rules.md
|
|
4
|
-
.roo/rules/cipher-rules.md
|
|
5
|
-
.windsurf/rules/cipher-rules.md
|
|
6
|
-
.cursor/rules/cipher-rules.mdc
|
|
7
|
-
.kiro/steering/cipher-rules.md
|
|
8
|
-
.qoder/rules/cipher-rules.md
|
|
9
|
-
.augment/rules/cipher-rules.md
|
|
10
2
|
.reviews
|
|
11
3
|
.coverage
|
|
12
4
|
|
|
@@ -59,9 +51,10 @@ coverage.json
|
|
|
59
51
|
.claude/metrics/
|
|
60
52
|
.claude/cache/
|
|
61
53
|
|
|
62
|
-
# MAP runtime files (but keep static-analysis scripts)
|
|
54
|
+
# MAP runtime files (but keep static-analysis and orchestrator scripts)
|
|
63
55
|
.map/*
|
|
64
56
|
!.map/static-analysis/
|
|
57
|
+
!.map/scripts/
|
|
65
58
|
|
|
66
59
|
# Temporary verification files
|
|
67
60
|
mapify_cli_verification_*.json
|
|
@@ -91,7 +84,6 @@ docs/claude-code-prompt-improver
|
|
|
91
84
|
|
|
92
85
|
# Local tool configs
|
|
93
86
|
.mcp.json
|
|
94
|
-
.chunkhound.json
|
|
95
87
|
.chunkhound/
|
|
96
88
|
docs/planning-with-files.txt
|
|
97
89
|
docs/research/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mapify-cli
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.2.0
|
|
4
4
|
Summary: MAP Framework installer - Modular Agentic Planner for Claude Code
|
|
5
5
|
Project-URL: Homepage, https://github.com/azalio/map-framework
|
|
6
6
|
Project-URL: Repository, https://github.com/azalio/map-framework.git
|
|
@@ -19,6 +19,7 @@ Requires-Dist: mypy>=1.0.0; extra == 'dev'
|
|
|
19
19
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
20
20
|
Requires-Dist: pytest-mock>=3.10.0; extra == 'dev'
|
|
21
21
|
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
|
22
|
+
Requires-Dist: pyyaml>=6.0.0; extra == 'dev'
|
|
22
23
|
Requires-Dist: ruff>=0.1.0; extra == 'dev'
|
|
23
24
|
Provides-Extra: ssl
|
|
24
25
|
Requires-Dist: truststore>=0.9.0; extra == 'ssl'
|
|
@@ -26,6 +27,7 @@ Provides-Extra: test
|
|
|
26
27
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'test'
|
|
27
28
|
Requires-Dist: pytest-mock>=3.10.0; extra == 'test'
|
|
28
29
|
Requires-Dist: pytest>=7.0.0; extra == 'test'
|
|
30
|
+
Requires-Dist: pyyaml>=6.0.0; extra == 'test'
|
|
29
31
|
Description-Content-Type: text/markdown
|
|
30
32
|
|
|
31
33
|
# MAP Framework for Claude Code
|
|
@@ -39,7 +41,7 @@ Based on [MAP cognitive architecture](https://github.com/Shanka123/MAP) (Nature
|
|
|
39
41
|
|
|
40
42
|
## Why MAP?
|
|
41
43
|
|
|
42
|
-
- **Structured workflows** —
|
|
44
|
+
- **Structured workflows** — 12 specialized agents instead of single-prompt chaos
|
|
43
45
|
- **Quality gates** — automatic validation catches errors before they compound
|
|
44
46
|
- **40-60% cost savings** — prevents circular reasoning and scope creep
|
|
45
47
|
- **Learning system** — captures patterns for reuse across projects
|
|
@@ -48,6 +50,9 @@ Based on [MAP cognitive architecture](https://github.com/Shanka123/MAP) (Nature
|
|
|
48
50
|
|
|
49
51
|
**1. Install**
|
|
50
52
|
```bash
|
|
53
|
+
uv tool install mapify-cli
|
|
54
|
+
|
|
55
|
+
# or with pip
|
|
51
56
|
pip install mapify-cli
|
|
52
57
|
```
|
|
53
58
|
|
|
@@ -71,12 +76,18 @@ claude
|
|
|
71
76
|
|
|
72
77
|
| Command | Use For |
|
|
73
78
|
|---------|---------|
|
|
74
|
-
| `/map-efficient` | Production features (recommended) |
|
|
79
|
+
| `/map-efficient` | Production features, refactoring, complex tasks (recommended) |
|
|
75
80
|
| `/map-debug` | Bug fixes and debugging |
|
|
81
|
+
| `/map-fast` | Small, low-risk changes |
|
|
82
|
+
| `/map-debate` | Complex decisions with multi-variant synthesis |
|
|
76
83
|
| `/map-review` | Pre-commit code review |
|
|
77
|
-
| `/map-
|
|
84
|
+
| `/map-check` | Quality gates and verification |
|
|
85
|
+
| `/map-plan` | Task decomposition without implementation |
|
|
86
|
+
| `/map-release` | Package release workflow |
|
|
87
|
+
| `/map-resume` | Resume interrupted workflows |
|
|
88
|
+
| `/map-learn` | Extract lessons after workflow completion |
|
|
78
89
|
|
|
79
|
-
[
|
|
90
|
+
[Detailed usage and options →](docs/USAGE.md)
|
|
80
91
|
|
|
81
92
|
## How It Works
|
|
82
93
|
|
|
@@ -107,7 +118,7 @@ The orchestration lives in `.claude/commands/map-*.md` prompts created by `mapif
|
|
|
107
118
|
## Trouble?
|
|
108
119
|
|
|
109
120
|
- **Command not found** → Run `mapify init` in your project first
|
|
110
|
-
- **Agent errors** → Check `.claude/agents/` has all
|
|
121
|
+
- **Agent errors** → Check `.claude/agents/` has all 12 `.md` files
|
|
111
122
|
- [More help →](docs/INSTALL.md#troubleshooting)
|
|
112
123
|
|
|
113
124
|
## Contributing
|
|
@@ -9,7 +9,7 @@ Based on [MAP cognitive architecture](https://github.com/Shanka123/MAP) (Nature
|
|
|
9
9
|
|
|
10
10
|
## Why MAP?
|
|
11
11
|
|
|
12
|
-
- **Structured workflows** —
|
|
12
|
+
- **Structured workflows** — 12 specialized agents instead of single-prompt chaos
|
|
13
13
|
- **Quality gates** — automatic validation catches errors before they compound
|
|
14
14
|
- **40-60% cost savings** — prevents circular reasoning and scope creep
|
|
15
15
|
- **Learning system** — captures patterns for reuse across projects
|
|
@@ -18,6 +18,9 @@ Based on [MAP cognitive architecture](https://github.com/Shanka123/MAP) (Nature
|
|
|
18
18
|
|
|
19
19
|
**1. Install**
|
|
20
20
|
```bash
|
|
21
|
+
uv tool install mapify-cli
|
|
22
|
+
|
|
23
|
+
# or with pip
|
|
21
24
|
pip install mapify-cli
|
|
22
25
|
```
|
|
23
26
|
|
|
@@ -41,12 +44,18 @@ claude
|
|
|
41
44
|
|
|
42
45
|
| Command | Use For |
|
|
43
46
|
|---------|---------|
|
|
44
|
-
| `/map-efficient` | Production features (recommended) |
|
|
47
|
+
| `/map-efficient` | Production features, refactoring, complex tasks (recommended) |
|
|
45
48
|
| `/map-debug` | Bug fixes and debugging |
|
|
49
|
+
| `/map-fast` | Small, low-risk changes |
|
|
50
|
+
| `/map-debate` | Complex decisions with multi-variant synthesis |
|
|
46
51
|
| `/map-review` | Pre-commit code review |
|
|
47
|
-
| `/map-
|
|
52
|
+
| `/map-check` | Quality gates and verification |
|
|
53
|
+
| `/map-plan` | Task decomposition without implementation |
|
|
54
|
+
| `/map-release` | Package release workflow |
|
|
55
|
+
| `/map-resume` | Resume interrupted workflows |
|
|
56
|
+
| `/map-learn` | Extract lessons after workflow completion |
|
|
48
57
|
|
|
49
|
-
[
|
|
58
|
+
[Detailed usage and options →](docs/USAGE.md)
|
|
50
59
|
|
|
51
60
|
## How It Works
|
|
52
61
|
|
|
@@ -77,7 +86,7 @@ The orchestration lives in `.claude/commands/map-*.md` prompts created by `mapif
|
|
|
77
86
|
## Trouble?
|
|
78
87
|
|
|
79
88
|
- **Command not found** → Run `mapify init` in your project first
|
|
80
|
-
- **Agent errors** → Check `.claude/agents/` has all
|
|
89
|
+
- **Agent errors** → Check `.claude/agents/` has all 12 `.md` files
|
|
81
90
|
- [More help →](docs/INSTALL.md#troubleshooting)
|
|
82
91
|
|
|
83
92
|
## Contributing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mapify-cli"
|
|
3
|
-
version = "3.
|
|
3
|
+
version = "3.2.0"
|
|
4
4
|
description = "MAP Framework installer - Modular Agentic Planner for Claude Code"
|
|
5
5
|
authors = [{ name = "MAP Framework Contributors" }]
|
|
6
6
|
readme = "README.md"
|
|
@@ -20,11 +20,13 @@ test = [
|
|
|
20
20
|
"pytest>=7.0.0",
|
|
21
21
|
"pytest-cov>=4.0.0",
|
|
22
22
|
"pytest-mock>=3.10.0",
|
|
23
|
+
"pyyaml>=6.0.0",
|
|
23
24
|
]
|
|
24
25
|
dev = [
|
|
25
26
|
"pytest>=7.0.0",
|
|
26
27
|
"pytest-cov>=4.0.0",
|
|
27
28
|
"pytest-mock>=3.10.0",
|
|
29
|
+
"pyyaml>=6.0.0",
|
|
28
30
|
"black>=23.0.0",
|
|
29
31
|
"ruff>=0.1.0",
|
|
30
32
|
"mypy>=1.0.0",
|