openai / orion-multistep-analysis
Source Code Overview

Analysis scope, overview of main, test, generated, deployment, build, and other code.

Source Code Analysis Scope
Files includes and excluded from analyses
  • 11 extensions are included in analyses: py, ts, tsx, json, sh, css, txt, md, gitignore, html, yaml
  • 2 criteria are used to exclude files from analysis:
    • exclude files with path like ".*/git[-]history[.]txt" (Git history) (1 file).
    • exclude files with path like ".*/git[-][a-zA-Z0-9_]+[.]txt" (Git data exports for sokrates analyses) (0 files).
Overview of Analyzed Files
Basic stats on analyzed files
Intro
For analysis purposes we separate files in scope into several categories: main, test, generated, deployment and build, and other.

  • The main category contains all manually created source code files that are being used in the production.
  • Files in the main category are used as input for other analyses: logical decomposition, concerns, duplication, file size, unit size, and conditional complexity.
  • Test source code files are used only for testing of the product. These files are normally not deployed to production.
  • Build and deployment source code files are used to configure or support build and deployment process.
  • Generated source code files are automatically generated files that have not been manually changed after generation.
  • While a source code folder may contain a number of files, we are primarily interested in the source code files that are being written and maintained by developers.
  • Files containing binaries, documentation, or third-party libraries, for instance, are excluded from analysis. The exception are third-party libraries that have been changed by developers.

main7495 LOC (46%) 63 files
test479 LOC (2%) 10 files
generated3907 LOC (24%) 1 file
build and deployment170 LOC (1%) 5 files
other4115 LOC (25%) 8 files
Main Code
All manually created or maintained source code that defines logic of the product that is run in a production environment.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*".
  • 63 files match defined criteria (7,495 LOC, 100.0% vs. main code):
    • 43 *.py files (3,318 LOC)
    • 7 *.tsx files (2,562 LOC)
    • 2 *.css files (1,119 LOC)
    • 9 *.ts files (475 LOC)
    • 1 *.html files (12 LOC)
    • 1 *.yaml files (9 LOC)
  • " *.py" is biggest, containing 44.27% of LOC.
  • " *.yaml" is smallest, containing 0.12% of LOC.


*.py3318 LOC (44%) 43 files
*.tsx2562 LOC (34%) 7 files
*.css1119 LOC (14%) 2 files
*.ts475 LOC (6%) 9 files
*.html12 LOC (<1%) 1 file
*.yaml9 LOC (<1%) 1 file
Test Code
Used only for testing of the product. Normally not deployed in a production environment.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*/[Tt]ests/.*".
    • files with paths like ".*/test_.*".
    • files with paths like ".*[.][Tt]est[.].*".
    • files with paths like ".*[.]test[.].*".
    • files with paths like ".*__tests__.*".
  • 10 files match defined criteria (479 LOC, 6.4% vs. main code):
    • 9 *.py files (409 LOC)
    • 1 *.ts files (70 LOC)
  • " *.py" is biggest, containing 85.39% of LOC.
  • " *.ts" is smallest, containing 14.61% of LOC.


*.py409 LOC (85%) 9 files
*.ts70 LOC (14%) 1 file
Generated Code
Automatically generated files, not manually changed after generation.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*/package[-]lock[.]json".
  • 1 file matches defined criteria (3,907 LOC, 52.1% vs. main code). All matches are in *.json files.


*.json3907 LOC (100%) 1 file
Build and Deployment Code
Source code used to configure or support build and deployment process.
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]sh".
    • files with paths like ".*[.]git[a-z]+".
    • files with paths like ".*/[.]gitignore".
    • files with paths like ".*/package[.]json".
    • files with paths like ".*/package[-]lock[.]json".
    • files with paths like ".*/requirements[a-zA-Z0-9._-]*[.]txt".
  • 5 files match defined criteria (170 LOC, 2.3% vs. main code):
    • 1 *.gitignore files (118 LOC)
    • 4 *.sh files (52 LOC)
  • " *.gitignore" is biggest, containing 69.41% of LOC.
  • " *.sh" is smallest, containing 30.59% of LOC.


*.gitignore118 LOC (69%) 1 file
*.sh52 LOC (30%) 4 files
Other Code
Explore:   circles  |  sunburst
  • The following criteria are used to filter files:
    • files with paths like ".*[.]md".
    • files with paths like ".*/README[.][a-z0-9]+".
    • files with paths like ".*[.]json".
    • files with paths like ".*[.]txt".
  • 8 files match defined criteria (4,115 LOC, 54.9% vs. main code):
    • 5 *.json files (3,985 LOC)
    • 2 *.md files (122 LOC)
    • 1 *.txt files (8 LOC)
  • " *.json" is biggest, containing 96.84% of LOC.
  • " *.txt" is smallest, containing 0.19% of LOC.


*.json3985 LOC (96%) 5 files
*.md122 LOC (2%) 2 files
*.txt8 LOC (<1%) 1 file
Analyzers
Info about analyzers used for source code examinations.
  • *.py files are analyzed with PythonAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • Unit size analysis
    • Conditional complexity analysis
    • Basic heuristic dependency analysis
  • *.tsx files are analyzed with TypeScriptAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • Unit size analysis
    • Conditional complexity analysis
    • No dependency analysis
  • *.css files are analyzed with CssAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • No unit size analysis
    • No conditional complexity analysis
    • No dependency analysis
  • *.ts files are analyzed with TypeScriptAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • Unit size analysis
    • Conditional complexity analysis
    • No dependency analysis
  • *.html files are analyzed with HtmlAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • Unit size analysis
    • Conditional complexity analysis
    • Advanced heuristic dependency analysis
  • *.yaml files are analyzed with YamlAnalyzer:
    • All basic standard analyses supported (source code overview, duplication, file size, concerns, findings, metrics, controls)
    • Advanced code cleaning (empty lines and comments removed for LOC calculations, additional cleaning for duplication calculations)
    • No unit size analysis
    • No conditional complexity analysis
    • No dependency analysis


2026-06-24 10:42