Nothing
#' orisma: Occupational Risk Integrated Systematic Mapping and Analysis
#'
#' @description
#' `orisma` is an R package for systematic bibliometric mapping of
#' occupational risk evidence. It is designed to help researchers and
#' occupational safety and health practitioners analyse whether the scientific
#' literature on a given topic is connected to workers, workplaces, exposure
#' conditions and preventive decision-making.
#'
#' @details
#' ORISMA provides a complete workflow for occupational risk evidence mapping:
#'
#' \itemize{
#' \item multi-source bibliographic ingestion;
#' \item deduplication;
#' \item relevance filtering through `orm_relevance_guard()` and `orm_run_guarded()`;
#' \item risk category extraction using a 58-category occupational risk dictionary;
#' \item preventive bibliometric indicators such as WRDI, RCS and MGP;
#' \item Abstract Sufficiency Score (ASS);
#' \item Bridge Article Score;
#' \item bilingual academic reports and practitioner-oriented risk sheets.
#' }
#'
#' Typical workflow:
#'
#' \preformatted{
#' library(orisma)
#'
#' refs <- orm_load("my_references/")
#'
#' result <- orm_run_guarded(
#' refs,
#' topic = "Collaborative robotics and occupational health and safety",
#' mode = "conservative"
#' )
#'
#' orm_report(result)
#' orm_risk_sheet(result)
#' }
#'
#' @section Original indicators:
#' \itemize{
#' \item WRDI: Worker-Risk Disconnection Index.
#' \item RCS: Risk Category Saturation Index.
#' \item MGP: Material-Gap Profile.
#' \item ASS: Abstract Sufficiency Score.
#' \item Bridge Article Score.
#' }
#'
#' @section Citation:
#' Aguilar-Elena, R., & Delgado-Garcia, A. (2026). `orisma`:
#' Occupational Risk Integrated Systematic Mapping and Analysis.
#' R package version 0.1.0. Universidad Internacional de Valencia (VIU)
#' & Universidad de Salamanca (USAL).
#' https://github.com/Aguilar-Elena/orisma
#'
#' @section Author(s):
#' Raul Aguilar-Elena <raguilar@universidadviu.com> \cr
#' Occupational Risk Prevention and Occupational Health Research Group (GPRL),
#' Universidad Internacional de Valencia (VIU), Valencia, Spain. \cr
#'
#' Ana Delgado-Garcia <a.delgado@usal.es> \cr
#' Universidad de Salamanca (USAL), Salamanca, Spain.
#'
#' @seealso
#' Useful links:
#' \itemize{
#' \item \url{https://github.com/Aguilar-Elena/orisma}
#' \item Report bugs at \url{https://github.com/Aguilar-Elena/orisma/issues}
#' }
#'
#' @docType package
#' @name orisma-package
#' @aliases orisma
"_PACKAGE"
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.