@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.
Files changed (44) hide show
  1. package/AGENTS.md +86 -0
  2. package/CONTRIBUTING.md +31 -0
  3. package/DEPLOYMENT_LOG.md +39 -0
  4. package/LICENSE +21 -0
  5. package/README.md +253 -0
  6. package/REPO_SOURCE_OF_TRUTH.json +77 -0
  7. package/SAFE_ENV_AUDIT.md +12 -0
  8. package/SECURITY.md +32 -0
  9. package/WORKING_NOTES.md +27 -0
  10. package/adapters/claude/CLAUDE.md +27 -0
  11. package/adapters/codex/AGENTS.md +24 -0
  12. package/adapters/cursor/rules.md +12 -0
  13. package/bin/aiml-superagent.js +477 -0
  14. package/docs/01-operating-model.md +95 -0
  15. package/docs/02-context-minimizer.md +113 -0
  16. package/docs/03-project-memory.md +83 -0
  17. package/docs/04-verification-loop.md +82 -0
  18. package/docs/05-secret-safe-operations.md +63 -0
  19. package/docs/06-deployment-discipline.md +50 -0
  20. package/docs/07-note-hygiene.md +51 -0
  21. package/docs/08-model-agnostic-use.md +53 -0
  22. package/docs/09-agent-evaluation.md +95 -0
  23. package/docs/10-adoption-playbook.md +62 -0
  24. package/docs/11-anti-patterns.md +85 -0
  25. package/docs/12-context-budget.md +52 -0
  26. package/docs/comparison-claude-md.md +56 -0
  27. package/docs/npm-private-publishing.md +89 -0
  28. package/docs/release-checklist.md +42 -0
  29. package/examples/nextjs-vercel-app/AGENTS.md +26 -0
  30. package/examples/nextjs-vercel-app/DEPLOYMENT_LOG.md +13 -0
  31. package/examples/nextjs-vercel-app/README.md +12 -0
  32. package/examples/nextjs-vercel-app/REPO_SOURCE_OF_TRUTH.json +65 -0
  33. package/examples/nextjs-vercel-app/SAFE_ENV_AUDIT.md +9 -0
  34. package/examples/nextjs-vercel-app/WORKING_NOTES.md +16 -0
  35. package/package.json +57 -0
  36. package/schemas/repo-source-of-truth.schema.json +122 -0
  37. package/templates/AGENTS.template.md +42 -0
  38. package/templates/DEPLOYMENT_LOG.template.md +11 -0
  39. package/templates/INCIDENT_REPORT.template.md +26 -0
  40. package/templates/PRODUCTION_CHECK.template.md +24 -0
  41. package/templates/REPO_SOURCE_OF_TRUTH.template.json +57 -0
  42. package/templates/SAFE_ENV_AUDIT.template.md +8 -0
  43. package/templates/TASK_BRIEF.template.md +22 -0
  44. 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
+