Compare commits
5 Commits
3db8b2211f
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| bd0a67de44 | |||
| 81ddcb97bd | |||
| cc0062434c | |||
| dc8f834942 | |||
| 9175d32599 |
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"java.compile.nullAnalysis.mode": "automatic"
|
||||
}
|
||||
1
template/.gitignore
vendored
1
template/.gitignore
vendored
@@ -37,5 +37,6 @@ _FOSSIL_
|
||||
_FOSSIL_-journal
|
||||
.fslckout
|
||||
.fslckout-journal
|
||||
.toco/branch_map.json
|
||||
|
||||
*.pem
|
||||
@@ -1,8 +1,9 @@
|
||||
The .toco directory is used to store rules (supporting .md files only). The internal structure is defined as follows:
|
||||
The `.toco` directory is used to store agent rules. Only `.md` files are supported. The internal structure is defined as follows:
|
||||
|
||||
global/ Contains general rules applicable to all Agents. These rules take effect globally across the entire system.
|
||||
toco/ Contains rules specific to the Toco Agent. These are used for high-level process control (e.g., "modeling prohibited," "planning mandatory"). Typically, no new rules need to be added here.
|
||||
modeling/ Contains rules specific to the Domain Architect Agent, used during the domain modeling phase.
|
||||
plan/ Contains rules specific to the Planner Agent, used during the planning and analysis phase.
|
||||
design/ Contains rules specific to the Designer Agent, used for operating and managing TOCO design elements.
|
||||
coding/ Contains rules specific to the Developer Agent, used during the code implementation phase.
|
||||
`global/` Contains general rules applicable to all Agents. These rules take effect globally across the entire system.
|
||||
`toco/` Contains rules specific to the Toco Agent. These are used for high-level process control. Typically, no new rules need to be added here.
|
||||
`domain_architect/` Contains rules specific to the Domain Architect Agent, used during the domain modeling phase.
|
||||
`planner/` Contains rules specific to the Planner Agent, used during the planning and analysis phase.
|
||||
`designer/` Contains rules specific to the Designer Agent, used for TOCO design work.
|
||||
`developer/` Contains rules specific to the Developer Agent, used during code implementation.
|
||||
`tester/` Contains rules specific to the Tester Agent, used during testing and quality assurance.
|
||||
|
||||
1
template/.toco/tester/README
Normal file
1
template/.toco/tester/README
Normal file
@@ -0,0 +1 @@
|
||||
This directory is used to store rules specific to the Tester Agent for testing and quality assurance. Only .md files are supported.
|
||||
@@ -36,12 +36,6 @@
|
||||
<artifactId>javax.persistence-api</artifactId>
|
||||
<version>2.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.13</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-classic</artifactId>
|
||||
@@ -166,7 +160,7 @@
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<version>1.18.20</version>
|
||||
<version>1.18.46</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-collections</groupId>
|
||||
@@ -198,7 +192,7 @@
|
||||
<dependency>
|
||||
<groupId>io.github.think-1024</groupId>
|
||||
<artifactId>toco-all-spring5-springboot2-community</artifactId>
|
||||
<version>2.0</version>
|
||||
<version>2.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
|
||||
Reference in New Issue
Block a user