neohive 6.0.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.
@@ -0,0 +1,22 @@
1
+ {
2
+ "id": "autonomous-feature",
3
+ "name": "Autonomous Feature Build",
4
+ "description": "Full autonomous feature build: architecture, parallel backend+frontend, integration testing. Zero human intervention.",
5
+ "agents": [
6
+ { "name": "Architect", "role": "Software Architect", "skills": ["design", "interfaces", "architecture"], "prompt": "You are a software architect. Design the feature architecture with clear interfaces. Call verify_and_advance() when done. Use get_work() to stay in the proactive loop." },
7
+ { "name": "Backend", "role": "Backend Developer", "skills": ["api", "database", "server", "backend"], "prompt": "You are a backend developer. Implement server-side logic, APIs, and data models. Write unit tests. Call verify_and_advance() when done. Never wait for approval." },
8
+ { "name": "Frontend", "role": "Frontend Developer", "skills": ["ui", "css", "components", "frontend"], "prompt": "You are a frontend developer. Implement UI components, pages, and client-side logic. Write component tests. Call verify_and_advance() when done. Never wait for approval." },
9
+ { "name": "Tester", "role": "QA Engineer", "skills": ["testing", "qa", "integration", "verification"], "prompt": "You are a QA engineer. Write and run integration tests. Verify all components work together. Call verify_and_advance() when done." }
10
+ ],
11
+ "workflow": {
12
+ "name": "Autonomous Feature",
13
+ "autonomous": true,
14
+ "parallel": true,
15
+ "steps": [
16
+ { "description": "Design architecture and define interfaces", "assignee": "Architect" },
17
+ { "description": "Implement backend API and data layer", "assignee": "Backend", "depends_on": [1] },
18
+ { "description": "Implement frontend UI and components", "assignee": "Frontend", "depends_on": [1] },
19
+ { "description": "Write and run integration tests", "assignee": "Tester", "depends_on": [2, 3] }
20
+ ]
21
+ }
22
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "id": "code-review",
3
+ "name": "Code Review Pipeline",
4
+ "description": "Developer writes code, Reviewer checks it, Tester validates. Autonomous: review + test run in parallel after code is written.",
5
+ "agents": [
6
+ { "name": "Developer", "role": "Developer", "skills": ["code", "implementation"], "prompt": "You are a developer. Write code as instructed. Call verify_and_advance() when done. If review feedback arrives, fix issues and re-submit. Never wait idle." },
7
+ { "name": "Reviewer", "role": "Code Reviewer", "skills": ["review", "standards", "security"], "prompt": "You are a code reviewer. Review code for bugs, style, and best practices. Use submit_review() to approve or request changes. Call verify_and_advance() when done." },
8
+ { "name": "Tester", "role": "QA Tester", "skills": ["testing", "qa", "verification"], "prompt": "You are a QA tester. Write and run tests for the code. Report results. Call verify_and_advance() when done. Never wait for approval." }
9
+ ],
10
+ "workflow": {
11
+ "name": "Code Review",
12
+ "autonomous": true,
13
+ "parallel": true,
14
+ "steps": [
15
+ { "description": "Write code implementation", "assignee": "Developer" },
16
+ { "description": "Review code for quality and bugs", "assignee": "Reviewer", "depends_on": [1] },
17
+ { "description": "Write and run tests", "assignee": "Tester", "depends_on": [1] },
18
+ { "description": "Approve and merge", "assignee": "Developer", "depends_on": [2, 3] }
19
+ ]
20
+ }
21
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "id": "debug-squad",
3
+ "name": "Debug Squad",
4
+ "description": "Investigator finds the bug, Fixer patches it, Verifier confirms the fix. Autonomous: no waiting between steps.",
5
+ "agents": [
6
+ { "name": "Investigator", "role": "Bug Investigator", "skills": ["debugging", "analysis", "tracing"], "prompt": "You investigate bugs. Analyze error logs, trace code paths, and identify root causes. Call verify_and_advance() when root cause is found. Never wait idle." },
7
+ { "name": "Fixer", "role": "Bug Fixer", "skills": ["code", "fixing", "patching"], "prompt": "You fix bugs. Implement fixes based on investigation findings. Write regression tests. Call verify_and_advance() when done. If fix fails, use retry_with_improvement()." },
8
+ { "name": "Verifier", "role": "Fix Verifier", "skills": ["testing", "verification", "qa"], "prompt": "You verify bug fixes. Test the fix, confirm resolution, and check for regressions. Call verify_and_advance() when done." }
9
+ ],
10
+ "workflow": {
11
+ "name": "Bug Fix",
12
+ "autonomous": true,
13
+ "parallel": false,
14
+ "steps": [
15
+ { "description": "Investigate bug and identify root cause", "assignee": "Investigator" },
16
+ { "description": "Implement fix and write regression test", "assignee": "Fixer", "depends_on": [1] },
17
+ { "description": "Verify fix and check for regressions", "assignee": "Verifier", "depends_on": [2] },
18
+ { "description": "Close bug and document findings", "assignee": "Investigator", "depends_on": [3] }
19
+ ]
20
+ }
21
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "id": "feature-build",
3
+ "name": "Feature Development",
4
+ "description": "Architect designs, Builder implements, Reviewer approves. Autonomous mode: agents auto-advance through steps.",
5
+ "agents": [
6
+ { "name": "Architect", "role": "Software Architect", "skills": ["design", "interfaces", "architecture"], "prompt": "You are a software architect. Design the feature architecture, define interfaces, and create the implementation plan. When done, call verify_and_advance(). Never wait for approval." },
7
+ { "name": "Builder", "role": "Developer", "skills": ["code", "implementation", "testing"], "prompt": "You are a developer. Implement the feature following the architecture design. Write tests. When done, call verify_and_advance(). Never wait for approval." },
8
+ { "name": "Reviewer", "role": "Senior Reviewer", "skills": ["review", "quality", "standards"], "prompt": "You are a senior reviewer. Review implementations against the architecture. Use submit_review() to approve or request changes. Call verify_and_advance() when done." }
9
+ ],
10
+ "workflow": {
11
+ "name": "Feature Dev",
12
+ "autonomous": true,
13
+ "parallel": false,
14
+ "steps": [
15
+ { "description": "Design architecture and interfaces", "assignee": "Architect" },
16
+ { "description": "Implement feature following design", "assignee": "Builder", "depends_on": [1] },
17
+ { "description": "Review implementation", "assignee": "Reviewer", "depends_on": [2] },
18
+ { "description": "Address review feedback and ship", "assignee": "Builder", "depends_on": [3] }
19
+ ]
20
+ }
21
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "id": "research-write",
3
+ "name": "Research & Write",
4
+ "description": "Researcher gathers info, Writer creates content, Editor polishes. Autonomous: writer starts as soon as research is ready.",
5
+ "agents": [
6
+ { "name": "Researcher", "role": "Researcher", "skills": ["research", "analysis", "data"], "prompt": "You are a researcher. Gather information on the given topic. Organize findings into a structured research brief. Call verify_and_advance() when done." },
7
+ { "name": "Writer", "role": "Writer", "skills": ["writing", "content", "structure"], "prompt": "You are a writer. Write clear, well-structured content based on the research findings. Call verify_and_advance() when done. If editor requests changes, use retry_with_improvement()." },
8
+ { "name": "Editor", "role": "Editor", "skills": ["editing", "style", "accuracy"], "prompt": "You are an editor. Review and polish content. Check for clarity, accuracy, and style. Use submit_review() to approve or request revisions. Call verify_and_advance() when done." }
9
+ ],
10
+ "workflow": {
11
+ "name": "Content Pipeline",
12
+ "autonomous": true,
13
+ "parallel": false,
14
+ "steps": [
15
+ { "description": "Research topic and compile findings", "assignee": "Researcher" },
16
+ { "description": "Draft content from research", "assignee": "Writer", "depends_on": [1] },
17
+ { "description": "Edit and polish content", "assignee": "Editor", "depends_on": [2] },
18
+ { "description": "Finalize and publish", "assignee": "Writer", "depends_on": [3] }
19
+ ]
20
+ }
21
+ }