Skip to main content

Bridge Tools

AutoDev Bridge Tools

Tool Name (name)Description (desc)Example (example)
componentViewList all UI components of the current project, such as React and Vue components<devin>
List all UI Component List of current project, like React Vue components
/componentView
</devin>
containerViewList all modules of the current project<devin>
List all modules of current project
/containerView
</devin>
sccScc is a very fast and accurate code counter with complexity calculations and COCOMO estimation<devin>
Scc is a very fast accurate code counter with complexity calculations and COCOMO estimates
/scc
</devin>
historyGet historical commit information for the current file<devin>
Get history commit message of current file
/history:package.json
</devin>
knowledgeAnalyze through API call chains, default depth = 2 (fixed), i.e., Controller to Repository call chain<devin>
Analyze through API call chains, default depth = 2 (fixed), i.e., Controller to Repository call chain
/knowledge:GET#/api/blog/* [Note: * represents blog slug, equivalent to SpringMVC's @PathVariable]
</devin>
databaseDatabase schema and query tools<devin>
List database schema
/database:schema
List all tables in the database
/database:table
</devin>
stylingViewList all CSS/SCSS classes of the current project<devin>
List all CSS, SCSS classes of current project
/stylingView
</devin>
dependenciesGet all dependencies of the current project (Gradle, Maven, package.json)<devin>
Get all dependencies (Gradle, Maven, package.json) of current project
/dependencies
</devin>
webApiViewList all Web APIs of the current project<devin>
List all web apis of current project
/webApiView
If return no endpoints, we need to check Endpoint plugin installed.
</devin>