@aimlsuperagent/agent 0.1.0
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 +86 -0
- package/CONTRIBUTING.md +31 -0
- package/DEPLOYMENT_LOG.md +39 -0
- package/LICENSE +21 -0
- package/README.md +253 -0
- package/REPO_SOURCE_OF_TRUTH.json +77 -0
- package/SAFE_ENV_AUDIT.md +12 -0
- package/SECURITY.md +32 -0
- package/WORKING_NOTES.md +27 -0
- package/adapters/claude/CLAUDE.md +27 -0
- package/adapters/codex/AGENTS.md +24 -0
- package/adapters/cursor/rules.md +12 -0
- package/bin/aiml-superagent.js +477 -0
- package/docs/01-operating-model.md +95 -0
- package/docs/02-context-minimizer.md +113 -0
- package/docs/03-project-memory.md +83 -0
- package/docs/04-verification-loop.md +82 -0
- package/docs/05-secret-safe-operations.md +63 -0
- package/docs/06-deployment-discipline.md +50 -0
- package/docs/07-note-hygiene.md +51 -0
- package/docs/08-model-agnostic-use.md +53 -0
- package/docs/09-agent-evaluation.md +95 -0
- package/docs/10-adoption-playbook.md +62 -0
- package/docs/11-anti-patterns.md +85 -0
- package/docs/12-context-budget.md +52 -0
- package/docs/comparison-claude-md.md +56 -0
- package/docs/npm-private-publishing.md +89 -0
- package/docs/release-checklist.md +42 -0
- package/examples/nextjs-vercel-app/AGENTS.md +26 -0
- package/examples/nextjs-vercel-app/DEPLOYMENT_LOG.md +13 -0
- package/examples/nextjs-vercel-app/README.md +12 -0
- package/examples/nextjs-vercel-app/REPO_SOURCE_OF_TRUTH.json +65 -0
- package/examples/nextjs-vercel-app/SAFE_ENV_AUDIT.md +9 -0
- package/examples/nextjs-vercel-app/WORKING_NOTES.md +16 -0
- package/package.json +57 -0
- package/schemas/repo-source-of-truth.schema.json +122 -0
- package/templates/AGENTS.template.md +42 -0
- package/templates/DEPLOYMENT_LOG.template.md +11 -0
- package/templates/INCIDENT_REPORT.template.md +26 -0
- package/templates/PRODUCTION_CHECK.template.md +24 -0
- package/templates/REPO_SOURCE_OF_TRUTH.template.json +57 -0
- package/templates/SAFE_ENV_AUDIT.template.md +8 -0
- package/templates/TASK_BRIEF.template.md +22 -0
- package/templates/WORKING_NOTES.template.md +18 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Task Brief
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
|
|
5
|
+
One sentence.
|
|
6
|
+
|
|
7
|
+
## Scope
|
|
8
|
+
|
|
9
|
+
Files or systems expected to change.
|
|
10
|
+
|
|
11
|
+
## Out Of Scope
|
|
12
|
+
|
|
13
|
+
What should not be changed.
|
|
14
|
+
|
|
15
|
+
## Required Verification
|
|
16
|
+
|
|
17
|
+
Fastest meaningful proof.
|
|
18
|
+
|
|
19
|
+
## Notes Policy
|
|
20
|
+
|
|
21
|
+
What should be recorded if reality changes.
|
|
22
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Working Notes
|
|
2
|
+
|
|
3
|
+
## Current Durable Facts
|
|
4
|
+
|
|
5
|
+
- Add only facts that will help future tasks.
|
|
6
|
+
|
|
7
|
+
## Active Risks
|
|
8
|
+
|
|
9
|
+
- None recorded.
|
|
10
|
+
|
|
11
|
+
## Recent Verification
|
|
12
|
+
|
|
13
|
+
- None recorded.
|
|
14
|
+
|
|
15
|
+
## Stale Or Deprecated Facts
|
|
16
|
+
|
|
17
|
+
- None recorded.
|
|
18
|
+
|