Files
poimen-workflows/k8s/git-commit.yaml
T
Test f69295db6a docs(architecture): add memory-driven architecture & tool usage planning
Planning documents for memory service integration:

MEMORY_DRIVEN_ARCHITECTURE.md:
- Current state machine architecture (10 phases, 80 tasks)
- Memory service integration points & flow diagrams
- Activity usage per phase (T0-T10)
- Prompt optimization with memory context
- Retry policy enhancement via memory
- Complete flow diagrams & context hierarchy
- Skills and context consumption model

TOOL_USAGE_AND_SKILLS.md:
- Poimen tool landscape (6 categories)
- WorkflowDef builder, event log, executor patterns
- Verifier/judge/model provider integration
- Storage abstraction (EventLog + BlobStore)
- Skills ingestion strategy (4 phases)
- YAML skills registry example
- Tool-skill dependency matrix
- End-to-end execution scenario with memory

Both docs include:
- Flow diagrams
- Code examples
- Integration patterns
- Next steps for implementation
2026-08-29 21:52:13 -07:00

15 lines
407 B
YAML

# This ConfigMap stores the current Git commit hash
# Used by Kustomize to trigger pod rollouts on commit changes
apiVersion: v1
kind: ConfigMap
metadata:
name: poimen-git-info
namespace: poimen
labels:
app.kubernetes.io/name: poimen
app.kubernetes.io/component: orchestrator
data:
GIT_COMMIT: "4982c04" # Updated automatically by CI/CD
GIT_BRANCH: "main"
DEPLOYMENT_DATE: "2026-08-29"