frankbrsrk commited on
Commit
15c2cfb
·
verified ·
1 Parent(s): c262897

Upload agent_manifest (1).json

Browse files
Files changed (1) hide show
  1. meta/agent_manifest (1).json +115 -0
meta/agent_manifest (1).json ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "agentarium_standard_version": "v1",
3
+ "manifest_version": "1.1.1",
4
+ "agent_id": "gardenier.prompt_compiler",
5
+ "agent_name": "Gardenier",
6
+ "tagline": "Prompt compiler that converts raw input into structured prompt specifications.",
7
+ "description": "Gardenier is a professional prompt compiler that converts unstructured user input into a Structured Prompt Object (SPO) for downstream execution by a Worker Agent/LLM. It performs intent analysis, extracts latent constraints, fabricates step-based directives, applies a tone policy, and validates semantic integrity before output.",
8
+ "category": "meta_agent",
9
+ "class": "prompt_compiler",
10
+ "tags": [
11
+ "agentarium",
12
+ "prompt_compiler",
13
+ "structured_prompts",
14
+ "intent_analysis",
15
+ "validation",
16
+ "tone_policy",
17
+ "rag_optional"
18
+ ],
19
+ "status": "draft",
20
+ "author": {
21
+ "name": "Frank Brsrk",
22
+ "handle": "frankbrsrk",
23
+ "contact": "https://huggingface.co/frankbrsrk"
24
+ },
25
+ "timestamps": {
26
+ "created_at": "2025-12-12",
27
+ "updated_at": "2025-12-12"
28
+ },
29
+ "languages": [
30
+ "en"
31
+ ],
32
+ "intended_llm": {
33
+ "generic_compatible": true,
34
+ "notes": "Works with any chat-capable LLM. Best results with models that follow strict formatting and constraints."
35
+ },
36
+ "recommended_params": {
37
+ "temperature": 0.4,
38
+ "top_p": 1.0,
39
+ "max_output_tokens": 1400
40
+ },
41
+ "capabilities": {
42
+ "uses_rag": true,
43
+ "uses_tools": false,
44
+ "has_memory": true,
45
+ "multi_modal": false,
46
+ "analysis_focused": true
47
+ },
48
+ "files": {
49
+ "manifest": "/meta/agent_manifest.json",
50
+ "system_prompt": "/core/system_prompt.md",
51
+ "reasoning_template": "/core/reasoning_template.md",
52
+ "personality_fingerprint": "/core/personality_fingerprint.md",
53
+ "guardrails": "/guardrails/guardrails.md",
54
+ "datasets": [
55
+ "/datasets/domain_type_catalog.csv",
56
+ "/datasets/mode_commands.csv",
57
+ "/datasets/latent_constraints_signals.csv",
58
+ "/datasets/prompt_template_catalog.csv",
59
+ "/datasets/tone_policy.csv",
60
+ "/datasets/validation_rules.csv",
61
+ "/datasets/output_format_patterns.csv",
62
+ "/datasets/assumption_policies.csv"
63
+ ],
64
+ "memory_schemas": [
65
+ "/memory_schemas/session_memory_schema.csv"
66
+ ],
67
+ "docs": [
68
+ "/docs/workflow_notes.md",
69
+ "/docs/product_readme.md",
70
+ "/docs/use_cases.md"
71
+ ]
72
+ },
73
+ "licensing": {
74
+ "license": "MIT",
75
+ "notes": "If you prefer a different license, update this field and include a LICENSE file in the repo."
76
+ },
77
+ "pricing": {
78
+ "type": "free",
79
+ "amount": 0,
80
+ "currency": "USD"
81
+ },
82
+ "compatibility": {
83
+ "orchestrators": [
84
+ "n8n",
85
+ "LangChain",
86
+ "custom"
87
+ ],
88
+ "vector_db": [
89
+ "Pinecone",
90
+ "Qdrant",
91
+ "Weaviate",
92
+ "Chroma",
93
+ "pgvector",
94
+ "any"
95
+ ],
96
+ "memory_store": [
97
+ "in_memory",
98
+ "sqlite",
99
+ "postgres",
100
+ "supabase",
101
+ "any"
102
+ ]
103
+ },
104
+ "changelog": [
105
+ {
106
+ "version": "1.1.1",
107
+ "date": "2025-12-12",
108
+ "changes": [
109
+ "Removed mythic terminology; standardized on Structured Prompt Object (SPO) and Latent Constraints.",
110
+ "Added implementation-focused workflow notes for LangChain and n8n.",
111
+ "Expanded dataset index to 8 schema-driven datasets (rows to be added separately)."
112
+ ]
113
+ }
114
+ ]
115
+ }