diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for pms-application-service
 
+## 0.0.3.0 -- 2025-06-22
+
+* Changed scriptsDir to toolsDir.
+
 ## 0.0.2.0 -- 2025-06-15
 
 * Added expected prompt string for use with `expect`.
diff --git a/pms-application-service.cabal b/pms-application-service.cabal
--- a/pms-application-service.cabal
+++ b/pms-application-service.cabal
@@ -20,7 +20,7 @@
 -- PVP summary:     +-+------- breaking API changes
 --                  | | +----- non-breaking API additions
 --                  | | | +--- code changes with no API change
-version:            0.0.2.0
+version:            0.0.3.0
 
 -- A short (one-line) description of the package.
 synopsis:           pms-application-service
@@ -57,7 +57,7 @@
 
 library
     -- Import common warning flags.
-    ghc-options: -Wall -Wno-x-partial
+    ghc-options: -Wall -threaded -Wno-x-partial
 
     -- Modules exported by the library.
     exposed-modules:  PMS.Application.Service.DM.Type,
@@ -97,7 +97,7 @@
 
 test-suite pms-application-service-test
     -- Import common warning flags.
-    ghc-options: -Wall -Wno-x-partial
+    ghc-options: -Wall -threaded -Wno-x-partial
 
     -- Base language which the package is written in.
     default-language: GHC2021
diff --git a/src/PMS/Application/Service/App/Control.hs b/src/PMS/Application/Service/App/Control.hs
--- a/src/PMS/Application/Service/App/Control.hs
+++ b/src/PMS/Application/Service/App/Control.hs
@@ -34,7 +34,7 @@
   let domDat = defDom {
                DM._logDirDomainData   = conf^.logDirConfigData
              , DM._logLevelDomainData = conf^.logLevelConfigData
-             , DM._scriptsDirDomainData = conf^.scriptsDirConfigData
+             , DM._toolsDirDomainData = conf^.toolsDirConfigData
              , DM._promptsDomainData = conf^.promptsConfigData
              }
       appDat = def {
diff --git a/src/PMS/Application/Service/DM/Type.hs b/src/PMS/Application/Service/DM/Type.hs
--- a/src/PMS/Application/Service/DM/Type.hs
+++ b/src/PMS/Application/Service/DM/Type.hs
@@ -41,7 +41,7 @@
 data ConfigData = ConfigData {
     _logDirConfigData :: Maybe FilePath
   , _logLevelConfigData :: LogLevel
-  , _scriptsDirConfigData :: FilePath
+  , _toolsDirConfigData :: FilePath
   , _promptsConfigData :: [String]
   } deriving (Show, Read, Eq)
 
@@ -56,7 +56,7 @@
   def = ConfigData {
         _logDirConfigData  = Nothing
       , _logLevelConfigData = LevelDebug
-      , _scriptsDirConfigData = "./scripts"
+      , _toolsDirConfigData = "./tools"
       , _promptsConfigData = [
           "ghci>"
         , "]#"
