@jetrabbits/agentic 0.0.3 → 0.0.5
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.
- package/AGENTS.md +15 -0
- package/Makefile +40 -0
- package/README.md +1 -0
- package/UPGRADE.md +61 -0
- package/agentic +948 -10
- package/areas/devops/ci-cd/prompts/release-pipeline.md +69 -79
- package/areas/devops/ci-cd/rules/supply-chain-security.md +39 -19
- package/areas/devops/ci-cd/skills/github-actions-patterns/SKILL.md +6 -1
- package/areas/devops/ci-cd/skills/pipeline-security/SKILL.md +54 -119
- package/areas/devops/ci-cd/workflows/release-pipeline.md +72 -62
- package/areas/devops/kubernetes/skills/pod-troubleshooting/SKILL.md +1 -1
- package/areas/devops/observability/rules/alerting-standards.md +37 -31
- package/areas/devops/observability/rules/golden-signals.md +29 -20
- package/areas/devops/observability/skills/distributed-tracing/SKILL.md +10 -1
- package/areas/software/backend/rules/security.md +32 -12
- package/areas/software/frontend/skills/component-design/SKILL.md +13 -1
- package/areas/software/full-stack/AGENTS.md +1 -4
- package/areas/software/full-stack/rules/security-guide.md +48 -12
- package/areas/software/full-stack/workflows/debug-issue.md +2 -2
- package/areas/software/security/prompts/security-scan.md +47 -55
- package/areas/software/security/rules/dependency-policy.md +43 -8
- package/areas/software/security/skills/dependency-audit/SKILL.md +46 -25
- package/areas/software/security/skills/threat-modeling/SKILL.md +26 -0
- package/docs/agentic-lifecycle.md +103 -0
- package/docs/agentic-token-minimization/README.md +79 -0
- package/docs/agentic-usage.md +145 -0
- package/docs/catalog.schema.json +203 -0
- package/docs/guidance-updates/2026-04-10-software-devops-best-practices.md +26 -0
- package/docs/opencode_prepare_agents.md +40 -0
- package/docs/opencode_setup.md +45 -0
- package/docs/prompt-format.md +80 -0
- package/docs/site/README.md +44 -0
- package/docs/site/app.js +127 -0
- package/docs/site/catalog.json +5002 -0
- package/docs/site/index.html +52 -0
- package/docs/site/styles.css +177 -0
- package/extensions/codex/agents/developer.toml +1 -1
- package/extensions/codex/agents/devops-engineer.toml +1 -1
- package/extensions/codex/agents/product-owner.toml +1 -1
- package/extensions/codex/agents/team-lead.toml +1 -1
- package/extensions/opencode/plugins/model-checker.json +2 -3
- package/extensions/opencode/plugins/model-checker.ts +23 -0
- package/extensions/opencode/plugins/telegram-notification.ts +33 -5
- package/package.json +6 -2
- package/scripts/assess_area_quality.py +216 -0
- package/scripts/build_docs_catalog.py +283 -0
- package/scripts/lint_prompts.py +113 -0
- package/areas/software/full-stack/skills/bash-pro/SKILL.md +0 -310
- package/areas/software/full-stack/skills/python-pro/SKILL.md +0 -158
- package/areas/software/full-stack/skills/skill-creator/LICENSE.txt +0 -202
- package/areas/software/full-stack/skills/skill-creator/SKILL.md +0 -356
- package/areas/software/full-stack/skills/skill-creator/references/output-patterns.md +0 -82
- package/areas/software/full-stack/skills/skill-creator/references/workflows.md +0 -28
- package/areas/software/full-stack/skills/skill-creator/scripts/init_skill.py +0 -303
- package/areas/software/full-stack/skills/skill-creator/scripts/package_skill.py +0 -110
- package/areas/software/full-stack/skills/skill-creator/scripts/quick_validate.py +0 -95
- package/extensions/codex/skills/babysit-pr/SKILL.md +0 -187
- package/extensions/codex/skills/babysit-pr/agents/openai.yaml +0 -4
- package/extensions/codex/skills/babysit-pr/references/github-api-notes.md +0 -72
- package/extensions/codex/skills/babysit-pr/references/heuristics.md +0 -58
- package/extensions/codex/skills/babysit-pr/scripts/gh_pr_watch.py +0 -806
- package/extensions/codex/skills/babysit-pr/scripts/test_gh_pr_watch.py +0 -155
- package/extensions/opencode/skills/code_review_expert/SKILL.md +0 -144
- package/extensions/opencode/skills/design_expert/SKILL.md +0 -42
- package/extensions/opencode/skills/qa_expert/SKILL.md +0 -116
package/AGENTS.md
CHANGED
|
@@ -60,6 +60,21 @@ Cross-cutting practices that apply to every project regardless of area.
|
|
|
60
60
|
- Follow phases in order: Requirements → Design → Implementation → Verification → Deployment → Maintenance.
|
|
61
61
|
- Document requirements before implementation — "we'll figure it out" is not a requirement.
|
|
62
62
|
- Conduct design reviews for any change with architectural, security, or data model impact.
|
|
63
|
+
- Before changing project logic, read the relevant design and behavior documents under `docs/**`.
|
|
64
|
+
- Run validation, tests, coverage, and CI-style checks through Makefile targets only.
|
|
65
|
+
|
|
66
|
+
### Documentation of Behavior Changes
|
|
67
|
+
|
|
68
|
+
- Any behavior change captured in Markdown artifacts must be documented under the project `docs/` directory.
|
|
69
|
+
- Use documentation paths that match the change type, for example `docs/<feature>/README.md` for feature behavior and `docs/incidents/<date>-<workload>-root-cause.md` for incident root cause reports.
|
|
70
|
+
- Create or update the relevant `docs/` artifact in the same change set; do not leave behavior changes documented only in workflow outputs, tickets, or PR comments.
|
|
71
|
+
- Apply the `product-owner` role to confirm that docs describe the user-facing behavior, acceptance criteria, and operational constraints of the change.
|
|
72
|
+
|
|
73
|
+
### Context7 Knowledge Source
|
|
74
|
+
|
|
75
|
+
- Use Context7 for framework, library, SDK, API, and setup documentation before relying on model memory.
|
|
76
|
+
- Resolve the library or framework identity first, then request focused docs for the exact task and version when version matters.
|
|
77
|
+
- If Context7 is unavailable, state that explicitly and fall back to local docs or official project documentation.
|
|
63
78
|
|
|
64
79
|
### Code Style
|
|
65
80
|
|
package/Makefile
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
.PHONY: help install dev test lint fmt clean build assess-areas
|
|
2
|
+
|
|
3
|
+
help:
|
|
4
|
+
@printf '%s\n' \
|
|
5
|
+
"Available targets:" \
|
|
6
|
+
" install Install local development prerequisites" \
|
|
7
|
+
" dev Show local development entrypoints" \
|
|
8
|
+
" test Run end-to-end tests" \
|
|
9
|
+
" lint Run prompt and catalog validation" \
|
|
10
|
+
" fmt Check formatting hooks placeholder" \
|
|
11
|
+
" clean Remove generated reports" \
|
|
12
|
+
" build Build generated docs catalog" \
|
|
13
|
+
" assess-areas Generate area quality scorecards"
|
|
14
|
+
|
|
15
|
+
install:
|
|
16
|
+
@printf '%s\n' "No install step required."
|
|
17
|
+
|
|
18
|
+
dev:
|
|
19
|
+
@printf '%s\n' "Use ./agentic tui or ./agentic install ..."
|
|
20
|
+
|
|
21
|
+
test:
|
|
22
|
+
bash tests/e2e/agentic.e2e.sh
|
|
23
|
+
|
|
24
|
+
lint:
|
|
25
|
+
bash -n agentic
|
|
26
|
+
python3 -m py_compile scripts/build_docs_catalog.py scripts/lint_prompts.py scripts/assess_area_quality.py
|
|
27
|
+
python3 scripts/lint_prompts.py --strict
|
|
28
|
+
python3 scripts/build_docs_catalog.py --validate --output /tmp/agentic-catalog-check.json
|
|
29
|
+
|
|
30
|
+
fmt:
|
|
31
|
+
@printf '%s\n' "No formatter configured."
|
|
32
|
+
|
|
33
|
+
clean:
|
|
34
|
+
rm -f reports/area-quality.json reports/area-quality.md
|
|
35
|
+
|
|
36
|
+
build:
|
|
37
|
+
python3 scripts/build_docs_catalog.py --output docs/site/catalog.json --validate
|
|
38
|
+
|
|
39
|
+
assess-areas:
|
|
40
|
+
python3 scripts/assess_area_quality.py --json-output reports/area-quality.json --markdown-output reports/area-quality.md
|
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ and prompts into any project — and run a full SDLC agent team out of the box.
|
|
|
8
8
|
- [Website](https://sawrus.github.io/agent-guides/)
|
|
9
9
|
- [Coverage scorecard](https://claude.ai/public/artifacts/8177bc3d-3b2f-48a6-8232-47c5b02b20f3)
|
|
10
10
|
- [CLI usage guide](docs/agentic-usage.md)
|
|
11
|
+
- [NPM package](https://www.npmjs.com/package/@jetrabbits/agentic)
|
|
11
12
|
|
|
12
13
|
## Coverage snapshot
|
|
13
14
|
|
package/UPGRADE.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Agentic Knowledge Maintenance
|
|
2
|
+
|
|
3
|
+
This guide defines how to update `areas/**` so copied agentic artifacts stay practical, current, and token-efficient.
|
|
4
|
+
|
|
5
|
+
## Weekly Upgrade Workflow
|
|
6
|
+
|
|
7
|
+
1. Pick one specialization at a time, for example `areas/software/full-stack`.
|
|
8
|
+
2. Read its `AGENTS.md`, all workflow front matter, prompt examples, and the current `docs/site/catalog.json` entry.
|
|
9
|
+
3. Identify one concrete industry change worth adding: a new delivery practice, framework release pattern, testing method, security control, observability practice, or operational runbook step.
|
|
10
|
+
4. Convert the change into the smallest useful artifact:
|
|
11
|
+
- Rule: mandatory cross-cutting constraint agents must always follow.
|
|
12
|
+
- Skill: task-specific procedure loaded only when needed.
|
|
13
|
+
- Workflow: multi-role SDLC sequence with inputs, outputs, owners, gates, and failure path.
|
|
14
|
+
- Prompt: examples that trigger an existing workflow with realistic project context.
|
|
15
|
+
5. Run the area quality audit and prompt/catalog checks through Makefile targets.
|
|
16
|
+
6. Document the behavior change under `docs/guidance-updates/` or a more specific `docs/<feature>/` path.
|
|
17
|
+
|
|
18
|
+
## What Qualifies As Useful Knowledge
|
|
19
|
+
|
|
20
|
+
- It changes an agent decision or action in a target project.
|
|
21
|
+
- It has a measurable quality gate, command, checklist, schema, or handoff.
|
|
22
|
+
- It is specific to a domain, stack, SDLC phase, or operational risk.
|
|
23
|
+
- It helps a developer get better implementation, review, verification, rollout, or incident response.
|
|
24
|
+
|
|
25
|
+
Avoid adding:
|
|
26
|
+
|
|
27
|
+
- Generic advice that a modern LLM already knows.
|
|
28
|
+
- Long explanations without a command, decision rule, or acceptance criterion.
|
|
29
|
+
- Duplicate guidance already present in a parent area.
|
|
30
|
+
- Tool-specific setup that should live in `extensions/**` or `docs/**` instead.
|
|
31
|
+
|
|
32
|
+
## Area Update Checklist
|
|
33
|
+
|
|
34
|
+
- `AGENTS.md` remains a navigation map, not a knowledge dump.
|
|
35
|
+
- Rules use imperative language and contain enforceable constraints.
|
|
36
|
+
- Skills explain when to load them and keep detailed references in separate files only when needed.
|
|
37
|
+
- Workflows define roles, `execution.initiator`, inputs, outputs, `uses-skills`, quality gates, and a failure loop.
|
|
38
|
+
- Prompts include two or three realistic EN/RU examples with concrete systems, symptoms, constraints, and expected deliverables.
|
|
39
|
+
- All `uses-skills` entries resolve to existing `skills/<name>/SKILL.md`.
|
|
40
|
+
- Token budget is improved or justified: remove stale skills before adding new ones.
|
|
41
|
+
|
|
42
|
+
## Practical SDLC Additions To Look For
|
|
43
|
+
|
|
44
|
+
- Requirements: acceptance criteria templates, non-goal capture, compatibility and migration constraints.
|
|
45
|
+
- Design: API contract review, data model risk, UX state inventory, security threat paths.
|
|
46
|
+
- Implementation: framework-specific safe defaults, dependency upgrade patterns, migration sequencing.
|
|
47
|
+
- Verification: contract tests, blackbox flows, accessibility checks, performance budgets, CI gates.
|
|
48
|
+
- Deployment: rollout strategy, rollback steps, feature flags, monitoring, release notes.
|
|
49
|
+
- Maintenance: runbooks, postmortem templates, cost/performance review, dependency freshness.
|
|
50
|
+
|
|
51
|
+
## Quality Bar
|
|
52
|
+
|
|
53
|
+
An update is ready only when it gives the target-project agent enough context to act without guessing:
|
|
54
|
+
|
|
55
|
+
- what to inspect;
|
|
56
|
+
- which role owns the step;
|
|
57
|
+
- what command or artifact to produce;
|
|
58
|
+
- what pass/fail condition applies;
|
|
59
|
+
- where the behavior is documented under `docs/`.
|
|
60
|
+
|
|
61
|
+
If an update cannot pass that bar, keep it out of `areas/**` until it becomes actionable.
|