Exactly, it would allow us to put your shortcode in a post list querying each single post id. Currently, if I put your shortcode on a post listing page, the get_the_ID() take the page ID of the listing instead of the single post item. So I would do something like:
foreach ($posts as $post) {
[oacsspl id=$post->ID]
}
Thank you !